自定义诊所分类下拉列表

Posted

tags:

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

Place into fucntions.php
  1. /******* CUSTOM CLINIC TAXONOMY DROPDOWN *********/
  2.  
  3. function get_terms_dropdown($taxonomies, $args){
  4. $myterms = get_terms($taxonomies, $args);
  5. $firstitem = "<option value="">Choose a clinic...</option><option value="about/providers"><strong>* Show All Providers *</strong></option>";
  6. $output ="<select name="clinic" onchange="window.open(this.options[this.selectedIndex].value,'_top')" style="background:transparent;">
  7. $firstitem";
  8. foreach($myterms as $term){
  9. $root_url = get_bloginfo('url');
  10. $term_taxonomy=$term->taxonomy;
  11. $term_slug=$term->slug;
  12. $term_name =$term->name;
  13. $link = $term_slug;
  14. $output .="<option value='clinic/".$link."'>".$term_name."</option>";
  15. }
  16. $output .="</select>";
  17. return $output;
  18. }

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

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

创建相互依赖的下拉列表

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

使用JavaScript完成控制下拉列表左右选择

在片段android中创建listview

在片段中创建自定义列表视图时出错所需活动,找到片段