wpsc_get_next_preload_time()WPSCache 1.0

Get the timestamp of the next preload.

Хуков нет.

Возвращает

null. Ничего (null).

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

wpsc_get_next_preload_time();

Код wpsc_get_next_preload_time() WPSCache 1.10.0

function wpsc_get_next_preload_time() {
	$next = wp_next_scheduled( 'wp_cache_preload_hook' );
	if ( ! $next ) {
		$next = wp_next_scheduled( 'wp_cache_full_preload_hook' );
	}

	return $next;
}