PHP 自定义诊所分类标准下拉列表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 自定义诊所分类标准下拉列表相关的知识,希望对你有一定的参考价值。

/******* CUSTOM CLINIC TAXONOMY DROPDOWN *********/

function get_terms_dropdown($taxonomies, $args){
	$myterms = get_terms($taxonomies, $args);
	$firstitem = "<option value=\"\">Choose a clinic...</option><option value=\"about/providers\"><strong>* Show All Providers *</strong></option>";
	$output ="<select name=\"clinic\" onchange=\"window.open(this.options[this.selectedIndex].value,'_top')\" style=\"background:transparent;\">
		$firstitem";
	foreach($myterms as $term){
		$root_url = get_bloginfo('url');
		$term_taxonomy=$term->taxonomy;
		$term_slug=$term->slug;
		$term_name =$term->name;
		$link = $term_slug;
		$output .="<option value='clinic/".$link."'>".$term_name."</option>";
	}
	$output .="</select>";
return $output;
}

以上是关于PHP 自定义诊所分类标准下拉列表的主要内容,如果未能解决你的问题,请参考以下文章

php 显示下拉列表而不是自定义分类的多重复选框

创建相互依赖的下拉列表

全路径无限分类下拉列表的实现

如何使用 asp.net mvc Html.DropDownList 帮助器将自定义项添加到下拉列表的顶部?

如何在 WooCommerce 3 中添加自定义工作运输方式

从下拉列表中显示数据php