wp_cache_add

Definition:
function wp_cache_add($key, $data, $group = '', $expire = 0) {}

Adds data to the cache, if the cache key doesn’t already exist.

Parameters

  • int|string $key: The cache key to use for retrieval later
  • mixed $data: The data to add to the cache store
  • string $group: The group to add the cache to
  • int $expire: When the cache data should be expired

Source code

function wp_cache_add($key, $data, $group = '', $expire = 0) {

	global $wp_object_cache;



	return $wp_object_cache->add($key, $data, $group, $expire);

}

3435

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: