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



wp_cache_delete_multiple › WordPress Function

Seit6.0.0
Veraltetn/v
wp_cache_delete_multiple ( $keys, $group = '' )
Parameter: (2)
  • (array) $keys Array of keys under which the cache to deleted.
    Erforderlich: Ja
  • (string) $group Optional. Where the cache contents are grouped. Default empty.
    Erforderlich: Nein
    Standard: (leer)
Siehe:
  • WP_Object_Cache::delete_multiple()
Gibt zurück:
  • (bool[]) Array of return values, grouped by key. Each value is either true on success, or false if the contents were not deleted.
Definiert in:
Codex:

Deletes multiple values from the cache in one call.



Quellcode

function wp_cache_delete_multiple( array $keys, $group = '' ) {
	global $wp_object_cache;

	return $wp_object_cache->delete_multiple( $keys, $group );
}