wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_cache_flush › WordPress Function

Seit2.0.0
Veraltetn/v
wp_cache_flush ( Keine Parameter )
Siehe:
  • WP_Object_Cache::flush()
Gibt zurück:
  • (bool) True on success, false on failure.
Definiert in:
Codex:

Removes all cache items.



Quellcode

function wp_cache_flush() {
	global $wp_object_cache;

	return $wp_object_cache->flush();
}