action_scheduler_pastdue_actions_seconds, DAY_IN_SECONDS
action_scheduler_pastdue_actions_seconds, DAY_IN_SECONDS
Appears in: all-in-one-seo-pack.5.0.0.1
Hook Type: filter
Displaying hooks found in version: all-in-one-seo-pack.5.0.0.1apply_filters('action_scheduler_pastdue_actions_seconds, DAY_IN_SECONDS') is found 1 times:
- /vendor/woocommerce/action-scheduler/classes/ActionScheduler_AdminView.php line 167
*/ protected function check_pastdue_actions() { // Set thresholds. $threshold_seconds = (int) apply_filters( 'action_scheduler_pastdue_actions_seconds', DAY_IN_SECONDS ); $threshold_min = (int) apply_filters( 'action_scheduler_pastdue_actions_min', 1 ); // Set fallback value for past-due actions count. $num_pastdue_actions = 0; // Allow third-parties to preempt the default check logic.