wpsupercache_activate()WPSCache 1.0

Хуков нет.

Возвращает

null. Ничего (null).

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

wpsupercache_activate();

Код wpsupercache_activate() WPSCache 1.12.4

function wpsupercache_activate() {
	global $cache_path;
	if ( ! isset( $cache_path ) || $cache_path == '' )
		$cache_path = WP_CONTENT_DIR . '/cache/'; // from sample config file

	ob_start();
	wpsc_init();

	if (
		! wp_cache_verify_cache_dir() ||
		! wpsc_check_advanced_cache() ||
		! wp_cache_verify_config_file()
	) {
		$text = ob_get_contents();
		ob_end_clean();
		return false;
	}
	$text = ob_get_contents();
	wp_cache_check_global_config();
	ob_end_clean();
	wp_schedule_single_event( time() + 10, 'wp_cache_add_site_cache_index' );
}