Tribe__Cache::reset( $group = 'non_persistent' )
Removes a group of the cache, for now only non_persistent is supported.
Return
(bool)
Source
File: src/Tribe/Cache.php
public function reset( $group = 'non_persistent' ) {
if ( 'non_persistent' !== $group ) {
return false;
}
$this->non_persistent_keys = [];
return true;
}
Changelog
| Version | Description |
|---|---|
| 4.14.13 | Introduced. |