کد زیر رو یه تست بزن:
<?php
foreach (get_comments(array( 'status' => 'approve' )) as $comment) {
// ...
}
?>
// Example
<?php foreach (get_comments(array( 'status' => 'approve' )) as $comment): ?>
<div><?php echo $comment->comment_author; ?>...