wp_queue_comments_for_comment_meta_lazyload
函数
wp_queue_comments_for_comment_meta_lazyload ( $comments )
- 参数
-
-
(WP_Comment[])
$comments
Array of comment objects.- Required: 是
-
(WP_Comment[])
- 定义位置
-
-
wp-includes/comment.php
, line 514
-
wp-includes/comment.php
- 引入
- 4.5.0
- 弃用
- –
为元数据的懒加载队列评论。
function wp_queue_comments_for_comment_meta_lazyload( $comments ) { // Don't use `wp_list_pluck()` to avoid by-reference manipulation. $comment_ids = array(); if ( is_array( $comments ) ) { foreach ( $comments as $comment ) { if ( $comment instanceof WP_Comment ) { $comment_ids[] = $comment->comment_ID; } } } if ( $comment_ids ) { $lazyloader = wp_metadata_lazyloader(); $lazyloader->queue_objects( 'comment', $comment_ids ); } }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。