REST API中的自定义POST类型注释的端点是什么?

时间:2019-08-02 作者:TMA

在我的react项目中,我使用worpdress作为后端,需要使用我的自定义帖子类型events 还有评论。

因此,根据WordPress comments API文档,我正在使用这样的端点”/wp/wp-json/wp/v2/comments?events=704”; 因此,根据这一点,它应该只显示704条post ID注释。

但在我的情况下,它会返回我在post_type = post 而且请参见下面的自定义post类型的上述API端点的JSON结果。

enter image description here

这是一个\'post_type\' => post 返回正确结果的注释数据。

enter image description here

我在register\\u post\\u type“show\\u in\\u rest”中传递了此参数=>true

1 个回复
最合适的回答,由SO网友:Jacob Peattie 整理而成

自定义帖子类型仍然是帖子,因此要检索自定义帖子类型的特定帖子的评论,可以使用post 论点从API reference:

post 将结果集限制为指定给特定帖子ID的注释。

因此:

json/wp/v2/comments?post=704