Switch language

wpseek.com
A WordPress-centric search engine for devs and theme authors




wp_cache_add [ WordPress Function ]

wp_cache_add ( $key, $data, $group = '', $expire = 0 )
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
Uses:
  • $wp_object_cache
See:
  • WP_Object_Cache::add()
Returns:
  • (unknown)
Defined at:



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

Source


<?php
function wp_cache_add($key$data$group ''$expire 0) {
    global 
$wp_object_cache;

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

Examples [ wp-snippets.com ]

Top Google zoekresultaten

Meer ...

Gebruikersdiscussies [ wordpress.org ]

0 User Note(s)

Nog geen één. Wees de eerste!

Nieuw toevoegen ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics