Created
July 7, 2024 14:38
-
-
Save shameemreza/4b0ce9354fea816be551c2dafcc414b1 to your computer and use it in GitHub Desktop.
Automatically delete completed Action Scheduler completed tasks daily in WooCommerce
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function wc_as_retention_period() { | |
return DAY_IN_SECONDS; | |
} | |
add_filter( 'action_scheduler_retention_period', 'wc_as_retention_period' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment