WordPress Version: 6.3
/**
* Sets the last changed time for the 'sites' cache group.
*
* @since 5.1.0
*/
function wp_cache_set_sites_last_changed()
{
wp_cache_set_last_changed('sites');
}
The timeline below displays how wordpress function wp_cache_set_sites_last_changed has changed across different WordPress versions. If a version is not listed, refer to the next available version below.
/**
* Sets the last changed time for the 'sites' cache group.
*
* @since 5.1.0
*/
function wp_cache_set_sites_last_changed()
{
wp_cache_set_last_changed('sites');
}
/**
* Sets the last changed time for the 'sites' cache group.
*
* @since 5.1.0
*/
function wp_cache_set_sites_last_changed()
{
wp_cache_set('last_changed', microtime(), 'sites');
}