Saves the data to the cache.
Differs from wp_cache_add() and wp_cache_replace() in that it will always write data.
$keyint|stringrequired
$datamixedrequired
$groupstringoptional
Default:''
$expireintoptional
function wp_cache_set( $key, $data, $group = '', $expire = 0 ) {
global $wp_object_cache;
return $wp_object_cache->set( $key, $data, $group, (int) $expire );
}
| Version | Description |
|---|---|
| 2.0.0 | Introduced. |
© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_cache_set