$comment_ids =
array_map( 'intval',
$comment_ids );
if ( $this->query_vars
['update_comment_meta_cache'
] ) { wp_lazyload_comment_meta( $comment_ids );
} if ( 'ids' ===
$this->query_vars
['fields'
] ) { $this->comments =
$comment_ids;
return $this->comments;
} _prime_comment_caches( $comment_ids, false
);
// Fetch full comment objects from the primed cache.
$_comments = array
();
foreach ( $comment_ids as $comment_id ) { $_comment =
get_comment( $comment_id );
if ( $_comment ) { $_comments[] =
$_comment;
} } // Prime comment post caches.