搜索无法使用具有自定义分类的CPT
<form id="searchform" method="get" action="<?php bloginfo(\'url\'); ?>">
<input type="text" name="s" id="s" size="15" />
<?php //wp_dropdown_categories(\'show_option_none=Select category&taxonomy=type\'); ?>
<?php wp_dropdown_categories(\'depth=0&orderby=name&hide_empty=1&show_option_all=Search Everything&name=course&taxonomy=type\'); ?>
<input type="submit" value="Search" />
</form>
但对于默认的post和category,则使用此代码
<form id="searchform" method="get" action="<?php bloginfo(\'url\'); ?>">
<input type="text" name="s" id="s" size="15" />
<?php //wp_dropdown_categories(\'show_option_none=Select category&taxonomy=type\'); ?>
<?php wp_dropdown_categories(\'depth=0&orderby=name&hide_empty=1&show_option_all=Search Everything\'); ?>
<input type="submit" value="Search" />