WP_Object_Cache::flush()
Clears the object cache of all data.
Метод класса: WP_Object_Cache{}
Хуков нет.
Возвращает
true
. Always returns true.
Использование
$WP_Object_Cache = new WP_Object_Cache(); $WP_Object_Cache->flush();
Список изменений
С версии 2.0.0 | Введена. |
Код WP_Object_Cache::flush() WP Object Cache::flush WP 6.7.1
public function flush() { $this->cache = array(); return true; }