views:

21

answers:

1

I need to create multiple search fields that each search different content in WordPress. I know about Search Everything, which is helpful with specifying what is searched, but doesn't allow multiple, unique instances with their own search parameters.

Any help is appreciated!

+1  A: 

For custom searching categories, you add a hidden input field to the search form, I'm sure there is a variation for content types.

<input type="hidden" name="cat" value="22" />

Possibly

<input type="hidden" name="post_type" value="your content type slug / name" />
awats
That's EXACTLY the solution I was looking for, thank you, awats! One of those things difficult to search out online.
Gavin