wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_cache_incr › WordPress Function

Seit3.3.0
Veraltetn/v
wp_cache_incr ( $key, $offset = 1, $group = '' )
Parameter: (3)
  • (int|string) $key The key for the cache contents that should be incremented.
    Erforderlich: Ja
  • (int) $offset Optional. The amount by which to increment the item's value. Default 1.
    Erforderlich: Nein
    Standard: 1
  • (string) $group Optional. The group the key is in. Default empty.
    Erforderlich: Nein
    Standard: (leer)
Siehe:
  • WP_Object_Cache::incr()
Gibt zurück:
  • (int|false) The item's new value on success, false on failure.
Definiert in:
Codex:

Increments numeric cache item's value.



Quellcode

function wp_cache_incr( $key, $offset = 1, $group = '' ) {
	global $wp_object_cache;

	return $wp_object_cache->incr( $key, $offset, $group );
}