Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End listing comments in wordpress Re: listing comments in wordpress

#86433
chrisburton
Participant

@cybershot

$args = array(
'status' => 'approve',
'number' => '5',
);
$comments = get_comments($args);
foreach($comments as $comment) :
echo($comment->comment_author . '
' . $comment->comment_content);
endforeach;