dongqing314511 2012-12-29 03:58
浏览 51
已采纳

如何在wp_dropdown_categories中更改“选项”和“选择”的值?

I am currently using this code to display only the child terms of the current category being viewed -

<?php

//first get the current term
$current_term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );

//then set the args for wp_dropdown_categories
 $args = array(
    'child_of' => $current_term->term_id,
    'taxonomy' => $current_term->taxonomy,
    'hide_empty' => 0,
    'hierarchical' => true,
    'depth'  => 2,
    'title_li' => '',
        'show_option_all' => All,
        'hide_if_empty' => true
    );
 wp_dropdown_categories( $args );
?>

I need to be able to add values and classes to the 's and the opening . How can I modify the above code to do so?

Im not sure but I think Im getting close. -

<?php
function get_terms_dropdown($taxonomies, $args){
//first get the current term
$current_term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
 $args = array(
    'child_of' => $current_term->term_id,
    'taxonomy' => $current_term->taxonomy,
    'hide_empty' => 0,
    'hierarchical' => true,
    'depth'  => 2,
    'title_li' => '',
        'show_option_all' => All,
        'hide_if_empty' => true
    );
    $output ="<select name='".$term_slug."'><option selected='".$selected."' value='".$emptyvalue."'>Select a Category</option>'";

    foreach($current_term as $term){
        $output .="<option name='".$term_slug."' value='".$link."'>".$term_name."</option>";
    }
    $output .="</select>";
return $output;
}
echo get_terms_dropdown($taxonomies, $args);

?>

The problem is the drop down is not showing any categories/terms, what am I missing?

  • 写回答

1条回答 默认 最新

  • duandao8607 2013-01-31 07:08
    关注

    Ok yet I answered another one of my own questions. I was able to create the drop down filter that retrieves the child terms of the current taxonomy page being viewed. For anyone interested in the solution, here it is ---

    First I had to create in my functions.php file a walker class --

    class SH_Walker_TaxonomyDropdown extends Walker_CategoryDropdown{
    
        function start_el(&$output, $category, $depth, $args) {
            $pad = str_repeat('&nbsp;', $depth * 2);
            $cat_name = apply_filters('list_cats', $category->name, $category);
    
            if( !isset($args['value']) ){
                $args['value'] = ( $category->taxonomy != 'category' ? 'slug' : 'id' );
            }
    
            $value = ($args['value']=='slug' ? $category->slug : $category->term_id );
    
            $output .= "\t<option class=\"level-$depth\" data-filter-value=\".".$value."\"";
            if ( $value === (string) $args['selected'] ){ 
                $output .= ' selected="selected"';
            }
            $output .= '>';
            $output .= $pad.$cat_name;
            if ( $args['show_count'] )
                $output .= '&nbsp;&nbsp;('. $category->count .')';
    
            $output .= "</option>
    ";
    }
     }
    

    Then I placed this code in my sidebar --

    <?php
    
    //first get the current term
    $current_term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
    
    //then set the args for wp_dropdown_categories
     $args = array(
        'walker'=> new SH_Walker_TaxonomyDropdown(),
        'value'=>'slug',
        'child_of' => $current_term->term_id,
        'taxonomy' => $current_term->taxonomy,
        'hide_empty' => 0,
        'hierarchical' => true,
        'depth'  => 2,
        'title_li' => '',
        'id' => 'filter-select',
        'class' => 'filter option-set',
            'show_option_all' => All,
            'hide_if_empty' => true
        );
     wp_dropdown_categories( $args );
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 找一个网络防御专家,外包的
  • ¥100 能不能让两张不同的图片md5值一样,(有尝)
  • ¥15 informer代码训练自己的数据集,改参数怎么改
  • ¥15 请看一下,学校实验要求,我需要具体代码
  • ¥50 pc微信3.6.0.18不能登陆 有偿解决问题
  • ¥20 MATLAB绘制两隐函数曲面的交线
  • ¥15 求TYPCE母转母转接头24PIN线路板图
  • ¥100 国外网络搭建,有偿交流
  • ¥15 高价求中通快递查询接口
  • ¥15 解决一个加好友限制问题 或者有好的方案