Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shameemreza/e65052121d9de46de4030c5aa7abe2cc to your computer and use it in GitHub Desktop.
Save shameemreza/e65052121d9de46de4030c5aa7abe2cc to your computer and use it in GitHub Desktop.
Reduce Action Scheduler Retention Period to One Week in WooCommerce
add_filter( 'action_scheduler_retention_period', 'wc_action_scheduler_purge' );
/**
* Change Action Scheduler default purge to 1 week
*/
function wc_action_scheduler_purge() {
return WEEK_IN_SECONDS;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment