像Konstantin Kovshenin 在中指出this article, 您可以获得特定类别的评论,如下所示:
<?php
$show_comments = 10;
$i = 0;
$comments = get_comments("number=50&status=approve");
foreach ($comments as $comment)
{
$comm_post_id = $comment->comment_post_ID;
if (!has_term( \'XYZ\', $comm_post_id );)
continue;
$i++;
// Output the comment, author and whatever you need
// I\'ll just output the comment excerpt to keep my code simple
?><li><?php comment_excerpt(); ?></li><?php
if ($i >= $real_comments) break;
}
?>