如何向自定义页面添加评论
how can i add comments to to a custom page
我正在尝试在 wordpress 的自定义页面中显示 post 的评论。我想显示所有评论,包括子评论。有什么方法可以显示对应的评论 post?the_comments() 显示数据库中的所有评论。我可以使用 get_the_commets($args) 吗?
get_comments() 会为您解决问题。
$comments = get_comments(array('post_id'=>YOUR_ID));
将为您 return 提供一系列针对特定 post 的评论。
您可以查看 get_comments 页面以获得更多选项
我正在尝试在 wordpress 的自定义页面中显示 post 的评论。我想显示所有评论,包括子评论。有什么方法可以显示对应的评论 post?the_comments() 显示数据库中的所有评论。我可以使用 get_the_commets($args) 吗?
get_comments() 会为您解决问题。
$comments = get_comments(array('post_id'=>YOUR_ID));
将为您 return 提供一系列针对特定 post 的评论。
您可以查看 get_comments 页面以获得更多选项