Definition:
function wp_cache_delete($key, $group = '') {}
Removes the cache contents matching key and group.
Parameters
- int|string $key: What the contents in the cache are called
- string $group: Where the cache contents are grouped
Return values
returns:True on successful removal, false on failure
Source code
function wp_cache_delete($key, $group = '') {
global $wp_object_cache;
return $wp_object_cache->delete($key, $group);
}
3443

February 12, 2011 


No comments yet... Be the first to leave a reply!