wp_cache_disable()
No Hooks.
Returns
null. Nothing (null).
Usage
wp_cache_disable();
wp_cache_disable() wp cache disable code WPSCache 3.1.1
function wp_cache_disable() {
global $wp_cache_config_file, $cache_enabled;
if ( ! $cache_enabled ) {
wp_cache_debug( 'wp_cache_disable: already disabled' );
return true;
}
wp_cache_setting( 'cache_enabled', false );
wp_cache_debug( 'wp_cache_disable: disable cache' );
$cache_enabled = false;
wp_clear_scheduled_hook( 'wp_cache_check_site_hook' );
wp_clear_scheduled_hook( 'wp_cache_gc' );
wp_clear_scheduled_hook( 'wp_cache_gc_watcher' );
}