wp_cache_flush()
Removes all cache items.
Description Description
See also See also
Return Return
(bool) False on failure, true on success
Source Source
File: wp-includes/cache.php
function wp_cache_flush() {
global $wp_object_cache;
return $wp_object_cache->flush();
}
Expand full source code Collapse full source code View on Trac
Changelog Changelog
| Version | Description |
|---|---|
| 2.0.0 | Introduced. |