wpsc_get_next_preload_time()
Get the timestamp of the next preload.
No Hooks.
Returns
null. Nothing (null).
Usage
wpsc_get_next_preload_time();
wpsc_get_next_preload_time() wpsc get next preload time code WPSCache 3.1.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;
}