WordPress Version: 6.3
/**
* Sets the last changed time for the 'comment' cache group.
*
* @since 5.0.0
*/
function wp_cache_set_comments_last_changed()
{
wp_cache_set_last_changed('comment');
}
The timeline below displays how wordpress function wp_cache_set_comments_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 'comment' cache group.
*
* @since 5.0.0
*/
function wp_cache_set_comments_last_changed()
{
wp_cache_set_last_changed('comment');
}
/**
* Sets the last changed time for the 'comment' cache group.
*
* @since 5.0.0
*/
function wp_cache_set_comments_last_changed()
{
wp_cache_set('last_changed', microtime(), 'comment');
}