Make WordPress Core

Ticket #20810: wp_dropdown_categories_disabled_opt.patch

File wp_dropdown_categories_disabled_opt.patch, 1.1 KB (added by wpsmith, 12 years ago)

Disabled arg for wp_dropdown_categories()

  • category-template.php

     
    307307                'name' => 'cat', 'id' => '',
    308308                'class' => 'postform', 'depth' => 0,
    309309                'tab_index' => 0, 'taxonomy' => 'category',
    310                 'hide_if_empty' => false
     310                'hide_if_empty' => false,
     311                'disabled' => '',
    311312        );
    312313
    313314        $defaults['selected'] = ( is_category() ) ? get_query_var( 'cat' ) : 0;
     
    329330        $tab_index_attribute = '';
    330331        if ( (int) $tab_index > 0 )
    331332                $tab_index_attribute = " tabindex=\"$tab_index\"";
    332 
     333       
     334        $disabled_attribute = '';
     335        if( $disabled )
     336                $disabled_attribute = ' disabled="disabled"';
    333337        $categories = get_terms( $taxonomy, $r );
    334338        $name = esc_attr( $name );
    335339        $class = esc_attr( $class );
    336340        $id = $id ? esc_attr( $id ) : $name;
    337341
    338342        if ( ! $r['hide_if_empty'] || ! empty($categories) )
    339                 $output = "<select name='$name' id='$id' class='$class' $tab_index_attribute>\n";
     343                $output = "<select name='$name' id='$id' class='$class' $tab_index_attribute$disabled_attribute>\n";
    340344        else
    341345                $output = '';
    342346