wp_cache_flush() WordPress Function
The wp_cache_flush() function is used to clear the cache. This function will remove all cached data from the cache.
wp_cache_flush() #
Removes all cache items.
Description
See also
Return
(bool) True on success, false on failure.
Source
File: wp-includes/cache.php
function wp_cache_flush() {
global $wp_object_cache;
return $wp_object_cache->flush();
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 2.0.0 | Introduced. |