在WordPress中显示x个帖子列表上的评论数量

时间:2009-09-09 09:41:45

标签: wordpress wordpress-theming

我正在寻找一个Wordpress插件,它会在主页和每个类别下为每个博客条目显示一定数量的评论。

例如在主页上:

条目#3 博客内容 评论 评论 评论

条目#2 博客内容 评论 评论 评论

条目#1 博客内容 评论 评论 评论

我希望我已经清楚地解释过了。我还没找到我想找的东西,也许我正在搜索错误的短语!

感谢你的时间,任何指针都会受到赞赏!

1 个答案:

答案 0 :(得分:0)

我认为您希望使用get_comments功能更新模板。

<?php get_comments('array_args'); ?>

这些是论点:

<?php $defaults = array(
'status' => ,
'orderby' => 'comment_date_gmt',
'order' => 'DESC',
'number' => ,
'offset' => ,
'post_id' => 0); ?> 

所以你想把数字设置为3.其余的参数都是非常自我解释的。