如何将注释添加到自定义页面

时间:2015-06-01 07:23:26

标签: wordpress comments posts

我正在尝试在wordpress的自定义页面中显示帖子的评论。我想显示所有评论,包括子评论。有没有办法显示相应帖子的评论?the_comments()显示数据库中的所有评论。我可以使用get_the_commets($ args)吗?

1 个答案:

答案 0 :(得分:1)

get_comments()可以帮到你。

$comments = get_comments(array('post_id'=>YOUR_ID));

将返回特定帖子的一系列评论。

您可以查看get_comments页面了解更多选项