Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

comment_query

// WP_Comment_Query arguments
$args = array(
	'status'         => 'approve',
	'post_id'        => '$post_id',
	'number'         => '$number_of_comments_to_display',
	'offset'         => '$offset',
	'meta_query'     => array(
		'relation' => 'OR',
		array(
			'key'     => 'comment__in',
			'value'   => '$comment_on_hold',
			'compare' => '=',
		),
	),
);

// The Comment Query
$comment_query = new WP_Comment_Query( $args );