我正在尝试按帖子类型构建高级搜索表单。
例如
我有自定义帖子类型:LocatieTaxonomy:locatii
我在PostType中有类别:
类别:
-Orase-Arad-Alba。。。。
-提示-利夫雷尔之点-凝视医疗
我想得到该类别的所有帖子。。
例如,我选择Arad和凝视药物。。。应该告诉我阿拉德市的所有医疗点。
<form method="get" name="searchform" action="<?php bloginfo(\'url\'); ?>/">
<fieldset>
<legend>Centre de distributie:</legend>
<form>
<table width="500" border="0" cellpadding="0">
<tr>
<td width="135"><b>Selecteaza oras :</b></td>
<td width="359"><select name="locatie">
<option value="alba">Alba</option>
<option value="arad">Arad</option>
<option value="arges">Arges</option>
<option value="bacau">Bacau</option>
</select>
</td>
</tr>
</table>
<div class="ti"><b>Limiteaza cautarile</b></div>
<div class="linie"></div>
<table width="500" border="0" cellpadding="0">
<tr>
<td width="20"><input name="produs" value="1" type="checkbox"></td>
<td width="160">Punct de livrare</td>
<td width="25"><input name="produs" value="1" type="checkbox"></td>
<td width="109">Parteneri logistica</td>
<td width="35"><input name="produs" value="1" type="checkbox"></td>
<td width="137">Agenti</td>
</tr>
<tr>
<td><input name="produs" value="1" type="checkbox"></td>
<td>Gaze Medicale</td>
<td><input name="produs" value="1" type="checkbox"></td>
<td>Propan</td>
<td><input name="produs" value="1" type="checkbox"></td>
<td>Refrigerenti</td>
</tr>
</table>
<div class="sub">
<input class="art-button" type="submit" name="search" value="<?php _e(\'Search\'); ?>" />
</div>
</fieldset>
</form>