Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
希望这是一个简单/快速的。我正在使用 WP-API,我想获取给定帖子所属的类别(我也想获取标签)。
从文档中我能看到的唯一方法是请求每个类别的内容并检查是否post_id在其中一个类别中。标签的故事相同,因为它也使用分类结构。
post_id
如何GET /posts/:post_id请求返回类别和标签?
GET /posts/:post_id
GET /posts返回一个帖子数组,每个帖子都有一个“terms”子元素,其中一个“category”数组作为它的子元素。
GET /posts
同样适用GET /posts/:id
GET /posts/:id
如果您为帖子分配标签,我的理解是它也应该在“条款”中返回标签。