wpsc_get_next_preload_time()
Get the timestamp of the next preload.
Хуков нет.
Возвращает
null. Ничего (null).
Использование
wpsc_get_next_preload_time();
Код wpsc_get_next_preload_time() wpsc get next preload time WPSCache 3.0.3
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;
}