WP_Object_Cache::flush()publicWP 2.0.0

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 6.5.2

public function flush() {
	$this->cache = array();

	return true;
}