返回介绍

update_comment_cache()

发布于 2017-09-11 11:03:09 字数 2078 浏览 1207 评论 0 收藏 0

update_comment_cache( array $comments,  bool $update_meta_cache = true )

Updates the comment cache of given comments.


description

Will add the comments in $comments to the cache. If comment ID already exists in the comment cache then it will not be updated. The comment is added to the cache using the comment group with the key using the ID of the comments.


参数

$comments

(array) (Required) Array of comment row objects

$update_meta_cache

(bool) (Optional) Whether to update commentmeta cache.

Default value: true


源代码

File: wp-includes/comment.php

function update_comment_cache( $comments, $update_meta_cache = true ) {
	foreach ( (array) $comments as $comment )
		wp_cache_add($comment->comment_ID, $comment, 'comment');

	if ( $update_meta_cache ) {
		// Avoid `wp_list_pluck()` in case `$comments` is passed by reference.
		$comment_ids = array();
		foreach ( $comments as $comment ) {
			$comment_ids[] = $comment->comment_ID;
		}
		update_meta_cache( 'comment', $comment_ids );
	}
}

更新日志

Versiondescription
4.4.0Introduced the $update_meta_cache parameter.
2.3.0Introduced.

相关函数

Uses

  • wp-includes/cache.php: wp_cache_add()
  • wp-includes/meta.php: update_meta_cache()

Used By

  • wp-includes/comment.php: _prime_comment_caches()
  • wp-admin/includes/class-wp-comments-list-table.php: WP_Comments_List_Table::prepare_items()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文