wp_cache_postload() WPSCache 1.0
No Hooks.
Return
Null. Nothing.
Usage
wp_cache_postload();
Code of wp_cache_postload() wp cache postload WPSCache 1.7.1
function wp_cache_postload() {
global $cache_enabled, $wp_super_cache_late_init;
if ( !$cache_enabled )
return true;
if ( isset( $wp_super_cache_late_init ) && true == $wp_super_cache_late_init ) {
wp_cache_debug( 'Supercache Late Init: add wp_cache_serve_cache_file to init', 3 );
add_action( 'init', 'wp_cache_late_loader', 9999 );
} else {
wp_super_cache_init();
wp_cache_phase2();
}
}