wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



wp_cache_delete_multiple › WordPress Function

Od6.0.0
Przestarzałyn/a
wp_cache_delete_multiple ( $keys, $group = '' )
Parametry: (2)
  • (array) $keys Array of keys under which the cache to deleted.
    Wymagane: Tak
  • (string) $group Optional. Where the cache contents are grouped. Default empty.
    Wymagane: Nie
    Domyślny: (puste)
Zobacz:
  • WP_Object_Cache::delete_multiple()
Powrót:
  • (bool[]) Array of return values, grouped by key. Each value is either true on success, or false if the contents were not deleted.
Zdefiniowane na:
Codex:

Deletes multiple values from the cache in one call.



Źródło

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

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