Code-Snippets-Functions/Add functions to the wp-config.php file/adjust-action-scheduler-retention-period-one-week.txt

7 lines
205 B
Text

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;
}