get_comments fonksiyonu bu işi yapıyor.
$args = array(
'user_id' => $kullanici_idsi, // buraya dikkat
);
$comments = get_comments($args);
foreach($comments as $comment) :
echo($comment->comment_author . '
' . $comment->comment_content);
endforeach;
?>