mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-28 11:22:21 +08:00
7 lines
205 B
Text
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;
|
|
}
|