Uses
Uses | Description |
---|---|
wp-includes/cache.php: wp_cache_add() | Adds data to the cache, if the cache key doesn’t already exist. |
wp-includes/meta.php: update_meta_cache() | Updates the metadata cache for the specified objects. |
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.
(WP_Comment[]) (Required) Array of comment objects
(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 ); } }
Version | Description |
---|---|
4.4.0 | Introduced the $update_meta_cache parameter. |
2.3.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/update_comment_cache