wp_cache_incr( int|string $key, int $offset = 1, string $group = '' )
Increment numeric cache item’s value
Description
See also
Parameters
- $key
-
(int|string) (Required) The key for the cache contents that should be incremented.
- $offset
-
(int) (Optional) The amount by which to increment the item's value.
Default value: 1
- $group
-
(string) (Optional) The group the key is in.
Default value: ''
Return
(int|false) The item's new value on success, false on failure.
Source
File: wp-includes/cache.php
function wp_cache_incr( $key, $offset = 1, $group = '' ) { global $wp_object_cache; return $wp_object_cache->incr( $key, $offset, $group ); }
Changelog
Version | Description |
---|---|
3.3.0 | Introduced. |
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_cache_incr