Here is the quick WordPress function to fetch latest approved comments for each posts, Normally, WordPress displays comments on single post views via the comments.php => theme template file. But you can also easily display comments for each post on the landing page and other pages where you want to display just use following php code.
$commentArr = array_reverse(get_approved_comments($wp_query->post->ID));
$count = 1; // number of comments
if ($commentArr) { ?>
|
No Comments..’;
} ?>