| Server IP : 119.195.102.159 / Your IP : 216.73.217.134 Web Server : nginx/1.18.0 System : Linux picell 5.15.0-181-generic #191-Ubuntu SMP Fri May 22 19:09:02 UTC 2026 x86_64 User : altablue ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /tmp/ |
Upload File : |
<?php
/**
* Plugin Name: Picell Action Scheduler Retention
* Description: Keep completed Action Scheduler history for seven days to prevent oversized queue tables.
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
add_filter(
'action_scheduler_retention_period',
static function () {
return 7 * DAY_IN_SECONDS;
}
);