Home › Forums › Back End › listing comments in wordpress › Re: listing comments in wordpress
September 5, 2011 at 3:12 pm
#86433
Participant
$args = array(
'status' => 'approve',
'number' => '5',
);
$comments = get_comments($args);
foreach($comments as $comment) :
echo($comment->comment_author . '
' . $comment->comment_content);
endforeach;