如题,WordPress 只获取文章/页面主评论(父评论、top_level),也就是把主评论下的回复(子评论、child comments)排除。
可以使用 get_comments() 实现,参考代码:
get_comments('status=approve&parent=0&number=3&order=ASC&post_id='.get_the_id())
原文:WordPress Development Stack Exchange - How to exclude the child comments in get_comments() query?