wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



wp_cache_flush › WordPress Function

Da2.0.0
Deprecaton/a
wp_cache_flush ( Nessun parametro )
Vedi:
  • WP_Object_Cache::flush()
Ritorna:
  • (bool) True on success, false on failure.
Definito a:
Codex:

Removes all cache items.



Sorgenti

function wp_cache_flush() {
	global $wp_object_cache;

	return $wp_object_cache->flush();
}