wp_cache_delete_multiple() – Deletes multiple values from the cache in one call.

You appear to be a bot. Output may be restricted

Description

Deletes multiple values from the cache in one call.

Usage

$bool[] = wp_cache_delete_multiple( $keys, $group );

Parameters

$keys
( array ) required – Array of keys under which the cache to deleted.
$group
( string ) optional – Optional. Where the cache contents are grouped. Default empty.

Returns

bool[] Array of return values, grouped by key. Each value is either true on success, or false if the contents were not deleted.

Source

File name: wordpress/wp-includes/cache.php


Lines:

1 to 6 of 6
function wp_cache_delete_multiple( array $keys, $group = '' ) {
  global $wp_object_cache;

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

 View on GitHub View on Trac