pre_get_ready_cron_jobs хук-фильтрWP 5.1.0

Filter to override retrieving ready cron jobs.

Returning an array will short-circuit the normal retrieval of ready cron jobs, causing the function to return the filtered value instead.

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

add_filter( 'pre_get_ready_cron_jobs', 'wp_kama_pre_get_ready_cron_jobs_filter' );

/**
 * Function for `pre_get_ready_cron_jobs` filter-hook.
 * 
 * @param null|array[] $pre Array of ready cron tasks to return instead.
 *
 * @return null|array[]
 */
function wp_kama_pre_get_ready_cron_jobs_filter( $pre ){

	// filter...
	return $pre;
}
$pre(null|array[])
Array of ready cron tasks to return instead.
По умолчанию: null to continue using results from _get_cron_array()

Список изменений

С версии 5.1.0 Введена.

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

wp_get_ready_cron_jobs()
pre_get_ready_cron_jobs
wp-includes/cron.php 1173
$pre = apply_filters( 'pre_get_ready_cron_jobs', null );

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

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