使用包括标签的多个选择进行搜索

时间:2012-09-28 作者:haRacz

我需要在我的新wordpress网站上自定义搜索特定的房屋项目。

enter image description here

它需要有4个下拉列表-1[数字2]用于类别,3[数字3,4,5]用于标记。

标签需要在代码中定义,因为在整个站点的13个标签中,4个代表一个下拉列表,5个代表第二个,4个代表第三个。

有没有办法做到这一点?

我在本教程中创建了类别下拉列表:http://www.webstutorial.com/wordpress-multiple-category-search/content-management-system-cms/wordpress-cms只包括我需要的类别:

<div><?php wp_dropdown_categories(\'show_count=1&include=4,5,6,7\'); ?></div>
但是WordPress没有像wp\\u dropdown\\u tags这样的功能来制作这样的标签

在Codex(www.Codex.wordpress.org/Function\\u Reference/get\\u the\\u tags)上有这样的内容:Function drop\\u tags(),但这只在\\u循环()中起作用,并列出所有标记。

它需要列出定义的标记,并只按选择的标记进行搜索。

希望你理解我的意思,并有任何解决方案。提前谢谢。

1 个回复
最合适的回答,由SO网友:Brian Fegter 整理而成

您可以定义any 参数中的分类:

wp_dropdown_categories(\'taxonomy=post_tag\');

结束

相关推荐

Custom Taxonomy Tag Search

我有一个现有的WordPress搜索功能,我想做的是将搜索扩展到自定义分类法中的标记。。。我该怎么做?<form method=\"get\" id=\"searchform\" action=\"<?php echo home_url(); ?>\"> <input type=\"text\" value=\"Product Search...\" name=\"s\" id=\"s\" /> <input type=\"imag