如何在所有帖子中显示该类别的第一篇帖子的评论?

时间:2013-02-10 20:19:37

标签: wordpress templates comments

我希望仅显示该类别第一篇文章的评论。

示例;

类别
- 第1篇(2条评论)
- 第2篇(1条评论)
- 第3篇(5条评论)

如果我正在阅读发布2 发布3 ,我应该会看到 2帖子1的评论

如何从模板文件中对此进行编码?

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

你应该像这样使用WP_query(http://codex.wordpress.org/Class_Reference/WP_Query):

$args = array(
'cat' => 'catnumber',
'post_count' => '1'
 );

$query = new WP_Query( $args );

查询将返回您想要的类别的最后一篇文章。然后你只需要在循环中使用函数get_comments:http://codex.wordpress.org/Function_Reference/get_comments