wp_cache_delete

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

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

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: