action_scheduler_queue_runner_time_limit хук-фильтрWC 1.0

Использование

add_filter( 'action_scheduler_queue_runner_time_limit', 'wp_kama_action_scheduler_queue_runner_time_limit_filter' );

/**
 * Function for `action_scheduler_queue_runner_time_limit` filter-hook.
 * 
 * @param  $time_limit 
 *
 * @return 
 */
function wp_kama_action_scheduler_queue_runner_time_limit_filter( $time_limit ){

	// filter...
	return $time_limit;
}
$time_limit
-

Где вызывается хук

ActionScheduler_Abstract_QueueRunner::get_time_limit()
action_scheduler_queue_runner_time_limit
woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Abstract_QueueRunner.php 265
return absint( apply_filters( 'action_scheduler_queue_runner_time_limit', $time_limit ) );

Где используется хук в WooCommerce

Использование не найдено.