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



wp_cache_delete › WordPress Function

Seit2.0.0
Veraltetn/v
wp_cache_delete ( $key, $group = '' )
Parameter: (2)
  • (int|string) $key What the contents in the cache are called.
    Erforderlich: Ja
  • (string) $group Optional. Where the cache contents are grouped. Default empty.
    Erforderlich: Nein
    Standard: (leer)
Siehe:
  • WP_Object_Cache::delete()
Gibt zurück:
  • (bool) True on successful removal, false on failure.
Definiert in:
Codex:

Removes the cache contents matching key and group.



Quellcode

function wp_cache_delete( $key, $group = '' ) {
	global $wp_object_cache;

	return $wp_object_cache->delete( $key, $group );
}