Deletes multiple values from the cache in one call.
Description
See also
Parameters
$keys
arrayrequired- Array of keys under which the cache to deleted.
$group
stringoptional- Where the cache contents are grouped.
Default:
''
Source
function wp_cache_delete_multiple( array $keys, $group = '' ) {
global $wp_object_cache;
return $wp_object_cache->delete_multiple( $keys, $group );
}
Changelog
Version | Description |
---|---|
6.0.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.