wp_cache_flush()WP 2.0.0

Completely clears the object cache. Deletes all items in the object cache.

1 time — 0.000088 sec (very fast) | 50000 times — 0.54 sec (very fast)

No Hooks.

Return

true|false. True on success, false on failure.

Usage

wp_cache_flush();

Examples

1

#1 Clear all object cache in WordPress

wp_cache_flush();

Notes

Changelog

Since 2.0.0 Introduced.

wp_cache_flush() code WP 6.5.2

function wp_cache_flush() {
	global $wp_object_cache;

	return $wp_object_cache->flush();
}