action_scheduler_pastdue_actions_check_interval filter-hookWC 1.0

Usage

add_filter( 'action_scheduler_pastdue_actions_check_interval', 'wp_kama_action_scheduler_pastdue_actions_check_interval_filter', 10, 2 );

/**
 * Function for `action_scheduler_pastdue_actions_check_interval` filter-hook.
 * 
 * @param  $round             
 * @param  $threshold_seconds 
 *
 * @return 
 */
function wp_kama_action_scheduler_pastdue_actions_check_interval_filter( $round, $threshold_seconds ){

	// filter...
	return $round;
}
$round
-
$threshold_seconds
-

Where the hook is called

ActionScheduler_AdminView::check_pastdue_actions()
action_scheduler_pastdue_actions_check_interval
woocommerce/packages/action-scheduler/classes/ActionScheduler_AdminView.php 180
$interval = apply_filters( 'action_scheduler_pastdue_actions_check_interval', round( $threshold_seconds / 4 ), $threshold_seconds );

Where the hook is used in WooCommerce

Usage not found.