wp_cache_flush

Advertisement

Summery Summery

Removes all cache items.

Syntax Syntax

wp_cache_flush()

Return Return

(bool) True on success, false on failure.

Source Source

File: wp-includes/cache.php

function wp_cache_flush() {
	global $wp_object_cache;

	return $wp_object_cache->flush();
}

Advertisement

Changelog Changelog

Changelog
Version Description
2.0.0 Introduced.

See also See also

Advertisement

Leave a Reply