wp_cache_reset

Definition:
function wp_cache_reset() {}

Reset internal cache keys and structures. If the cache backend uses global blog or site IDs as part of its cache keys, this function instructs the backend to reset those keys and perform any cleanup since blog or site IDs have changed since cache init.

Source code

function wp_cache_reset() {

	global $wp_object_cache;



	return $wp_object_cache->reset();

}

3453

No comments yet... Be the first to leave a reply!

Leave a comment