wp_cache_postload()WPSCache 1.0

Хуков нет.

Возвращает

null. Ничего.

Использование

wp_cache_postload();

Код wp_cache_postload() WPSCache 1.9.4

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();
	}
}