wp_cache_flush()

Removes all cache items.


Description

See also


Top ↑

Return

(bool) False on failure, true on success


Top ↑

Source

File: wp-includes/cache.php

function wp_cache_flush() {
	global $wp_object_cache;

	return $wp_object_cache->flush();
}

Top ↑

Changelog

Version Description
2.0.0 Introduced.