wp_cache_flush_runtime() WordPress Function
The wp_cache_flush_runtime() function is used to clear the cache of an object that is stored in memory. This function is typically used when an object is updated or deleted.
wp_cache_flush_runtime() #
Removes all cache items from the in-memory runtime cache.
Description
See also
Return
(bool) True on success, false on failure.
Source
File: wp-includes/cache.php
function wp_cache_flush_runtime() { return wp_cache_flush(); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
6.0.0 | Introduced. |