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



wp_cache_decr › WordPress Function

Seit3.3.0
Veraltetn/v
wp_cache_decr ( $key, $offset = 1, $group = '' )
Parameter: (3)
  • (int|string) $key The cache key to decrement.
    Erforderlich: Ja
  • (int) $offset Optional. The amount by which to decrement 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::decr()
Gibt zurück:
  • (int|false) The item's new value on success, false on failure.
Definiert in:
Codex:

Decrements numeric cache item's value.



Quellcode

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

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