Is there a way to select and display the last X approved comments regardless of which posts or categories they belong to ?

I just want to show on my home page the last comments added on my site, but I can't find anywhere how to do that.

link|improve this question

70% accept rate
feedback

2 Answers

up vote 1 down vote accepted

A slightly more complete and less abrupt answer.

<?php
$args = array(
    'status' => 'approve',
    'number' => '5'
);
$comments = get_comments($args);
foreach($comments as $comment) :
    // display any of the following indexes as you'd like
    var_dump($comment);
endforeach;
?>
link|improve this answer
feedback

Use get_comments() and don't pass a post id.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.