Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Comment query by email

Show comments based on certain email address

// WP_Comment_Query arguments
$args = array (
	'author_email'   => '[email protected]',
);

// The Comment Query
$comment_query = new WP_Comment_Query;
$comments = $comment_query->query( $args );