<div class="rov">
<div class="colmd12">
<section>
<?php
$comments = get_comments();
$args = array('class' => 'mr-3',);
foreach ($comments as $comment) {
?>
<div class="media mb-3">
<?php echo get_avatar($comment->author_email, 64, null, null, $args); ?>
<div class="media-body">
<h5 class="mt-0"><?php echo $comment->comment_author; ?></h5>
<?php comment_date('j-n-Y'); ?>
<div class="comment"><?php echo $comment->comment_content; ?></div>
</div>
</div>
<?php } ?>
</section>
</div>
</div>
<div class="rov">
<div class="colmd12">
<section>
<?php
$comments = get_comments(array(
"status" => "approve",
));
$args = array('class' => 'mr-3',);
foreach ($comments as $comment) {
?>
<div class="media mb-3">
<?php echo get_avatar($comment->author_email, 64, null, null, $args); ?>
<div class="media-body">
<h5 class="mt-0"><?php echo $comment->comment_author; ?></h5>
<?php comment_date('j-n-Y'); ?>
<div class="comment"><?php echo $comment->comment_content; ?></div>
</div>
</div>
<?php } ?>
</section>
</div>
</div>
get_comments
.