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



wp_cache_delete_multiple › WordPress Function

Da6.0.0
Deprecaton/a
wp_cache_delete_multiple ( $keys, $group = '' )
Parametri: (2)
  • (array) $keys Array of keys under which the cache to deleted.
    Richiesto:
  • (string) $group Optional. Where the cache contents are grouped. Default empty.
    Richiesto: No
    Default: (vuoto)
Vedi:
  • WP_Object_Cache::delete_multiple()
Ritorna:
  • (bool[]) Array of return values, grouped by key. Each value is either true on success, or false if the contents were not deleted.
Definito a:
Codex:

Deletes multiple values from the cache in one call.



Sorgenti

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

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