自定义诊所分类下拉列表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义诊所分类下拉列表相关的知识,希望对你有一定的参考价值。
Place into fucntions.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; }
以上是关于自定义诊所分类下拉列表的主要内容,如果未能解决你的问题,请参考以下文章