update_comment_cache
函数
update_comment_cache ( $comments, $update_meta_cache = true )
- 参数
-
-
(WP_Comment[])
$comments
Array of comment objects- Required: 是
-
(bool)
$update_meta_cache
Whether to update commentmeta cache. Default true.- Required: 否
- Default: true
-
(WP_Comment[])
- 定义位置
-
-
wp-includes/comment.php
, line 3301
-
wp-includes/comment.php
- 引入
- 2.3.0
- 弃用
- –
Updates the comment cache of given comments.
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.
function update_comment_cache( $comments, $update_meta_cache = true ) { $data = array(); foreach ( (array) $comments as $comment ) { $data[ $comment->comment_ID ] = $comment; } wp_cache_add_multiple( $data, '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 ); } }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。