Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shameemreza/4b0ce9354fea816be551c2dafcc414b1 to your computer and use it in GitHub Desktop.
Save shameemreza/4b0ce9354fea816be551c2dafcc414b1 to your computer and use it in GitHub Desktop.
Automatically delete completed Action Scheduler completed tasks daily in WooCommerce
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