action_scheduler_pastdue_actions_check_pre, null

action_scheduler_pastdue_actions_check_pre, null

Hook Type: filter

See hook in core

Displaying hooks found in version: all-in-one-seo-pack.5.0.0.1

apply_filters('action_scheduler_pastdue_actions_check_pre, null') is found 1 times:

  • /vendor/woocommerce/action-scheduler/classes/ActionScheduler_AdminView.php line 174
    		// Set fallback value for past-due actions count.
    		$num_pastdue_actions = 0;
    
    		// Allow third-parties to preempt the default check logic.
    		$check = apply_filters( 'action_scheduler_pastdue_actions_check_pre', null );
    
    		// If no third-party preempted and there are no past-due actions, return early.
    		if ( ! is_null( $check ) ) {
    			return;
    		}