Tribe__Cache::maybe_delete_expired_transients()
Runs on hook shutdown and will delete transients on the end of the request.
Return
(void) No return for action hook method.
Source
File: src/Tribe/Cache.php
public function maybe_delete_expired_transients() {
if ( ! tribe_get_var( 'should_delete_expired_transients', false ) ) {
return;
}
$this->delete_expired_transients();
}
Changelog
| Version | Description |
|---|---|
| 4.11.5 | Introduced. |