在wordpress中搜索特定类别

时间:2014-04-25 03:41:38

标签: php html json wordpress

我目前正在使用JSON API从wordpress

获取数据

http://wordpress.org/plugins/json-api/other_notes/

该插件有助于以JSON格式检索wordpress帖子数据

我注意到我可以在某个类别中获得帖子

http://www.test.com/?json=get_category_posts&id=9

我也可以搜索帖子

http://www.test.com/?json=get_search_results&search=keywords

但是,无论如何在某些类别中实施搜索?感谢

1 个答案:

答案 0 :(得分:3)

您可以通过两种方式在类别中搜索帖子:

<强>第一

http://www.test.com/category/{category-slug}/?json=get_search_results&search={search-keyword}&cat=2

<强>第二

http://www.test.com/?json=get_search_results&search={search-keyword}&cat=2

第二个选项实际上是重定向到第一个选项,但它可以正常工作。