php
<?php
/* 
Decrease the retention period to one week for the Action Scheduler
Original doc link: https://wpforms.com/docs/how-to-troubleshoot-action-scheduler-issues-in-wpforms/
For support, please visit: https://www.facebook.com/groups/wpformsvip
*/
function custom_as_retention_period() {
    return WEEK_IN_SECONDS;
}
add_filter( 'action_scheduler_retention_period', 'custom_as_retention_period' );