设置“注释”缓存组的上次更改时间。
原型
wp_cache_set_comments_last_changed()
源文件
路径:wp-includes/comment.php
<?php
...
function wp_cache_set_comments_last_changed() {
wp_cache_set( 'last_changed', microtime(), 'comment' );
}
...
?>
其他
英文文档:https://developer.wordpress.org/reference/functions/wp_cache_set_comments_last_changed/