wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_queue_comments_for_comment_meta_lazyload is deprecated since version 6.3.0!
Alternative: wp_lazyload_comment_meta()
Alternative: wp_lazyload_comment_meta()
wp_queue_comments_for_comment_meta_lazyload › WordPress Function
Seit4.5.0
Veraltet6.3.0
› wp_queue_comments_for_comment_meta_lazyload ( $comments )
| Parameter: |
|
| Definiert in: |
|
| Codex: |
Queues comments for metadata lazy-loading.
Quellcode
function wp_queue_comments_for_comment_meta_lazyload( $comments ) {
_deprecated_function( __FUNCTION__, '6.3.0', 'wp_lazyload_comment_meta()' );
// 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;
}
}
}
wp_lazyload_comment_meta( $comment_ids );
}