wpsc_is_preloading()
No Hooks.
Returns
null. Nothing (null).
Usage
wpsc_is_preloading();
wpsc_is_preloading() wpsc is preloading code WPSCache 3.1.0
function wpsc_is_preloading() {
if ( wp_next_scheduled( 'wp_cache_preload_hook' ) || wp_next_scheduled( 'wp_cache_full_preload_hook' ) ) {
return true;
} else {
return false;
}
}