i am also looking for this.
anyone???
Me too! Any solutions out there?
Try this, it worked well for me:
http://www.flisterz.com/2008/08/09/wordpress-show-latest-comments-for-each-post-on-main-page/
The author has it set-up to only pull the two most recent quotes, but you can easily change or delete that line altogether.
For more than two post, change the “2” in the first line below to another number:
<?php if ($count++ <= 2) { ?>
<li><?php comment_author_link(); ?> <?php comment_excerpt(); </li>
<?php } ?>
To remove the limit altogether, delete the first and last line above, leaving only the middle line of code, and you will get ALL comments for each post (this could get a little hairy at some point).
Good luck,
Atg
(@fuzzydave)
17 years, 7 months ago
Hello
Instead of linking to the comments author’s website, i’d like to link to a page showing all the comments by that particular author…
thanks