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