Search in particular category in wordpress

I am currently using the JSON API to get the data from wordpress

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

Read More

The plugin helps to retrieve the wordpress post data in JSON format

I notice that I can get the post within some category

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

And I can also search the post

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

However, are there anyway to implement search within some category? Thanks

Related posts

Leave a Reply

1 comment

  1. You can search post within category by two ways:

    First

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

    Second

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

    Second option actually redirect to first option, but it works.