Wordpress search with more input fields?
I have this example of working search:
form action="?php echo esc_url(site_url('/')) ; ?" method="get"
input type="search" name"s"
input type="submit" value="search"
/form
and this works great, but what I want to archive is to make this search work with two more select boxes:
form action="?php echo esc_url(site_url('/')) ; ?" method="get"
select name=""
optionOption one/option
optionOption one/option
/select
select name=""
optionOption A/option
optionOption B/option
/select
input type="search" name"s"
input type="submit" value="search"
/form
How do I go around to make this post do something like this: mysiteDOTcom/s=option1+optionb+searchinput ? Thanks in advance