diff --git a/wp-includes/category-template.php b/wp-includes/category-template.php index 35d6c82ed0..fbf9b9326e 100644 --- a/wp-includes/category-template.php +++ b/wp-includes/category-template.php @@ -356,17 +356,26 @@ function category_description( $category = 0 ) { */ function wp_dropdown_categories( $args = '' ) { $defaults = array( - 'show_option_all' => '', 'show_option_none' => '', - 'orderby' => 'id', 'order' => 'ASC', - 'show_count' => 0, - 'hide_empty' => 1, 'child_of' => 0, - 'exclude' => '', 'echo' => 1, - 'selected' => 0, 'hierarchical' => 0, - 'name' => 'cat', 'id' => '', - 'class' => 'postform', 'depth' => 0, - 'tab_index' => 0, 'taxonomy' => 'category', - 'hide_if_empty' => false, 'option_none_value' => -1, - 'value_field' => 'term_id', + 'show_option_all' => '', + 'show_option_none' => '', + 'orderby' => 'id', + 'order' => 'ASC', + 'show_count' => 0, + 'hide_empty' => 1, + 'child_of' => 0, + 'exclude' => '', + 'echo' => 1, + 'selected' => 0, + 'hierarchical' => 0, + 'name' => 'cat', + 'id' => '', + 'class' => 'postform', + 'depth' => 0, + 'tab_index' => 0, + 'taxonomy' => 'category', + 'hide_if_empty' => false, + 'option_none_value' => -1, + 'value_field' => 'term_id', ); $defaults['selected'] = ( is_category() ) ? get_query_var( 'cat' ) : 0; diff --git a/wp-includes/version.php b/wp-includes/version.php index 6d67673a4c..17e08505e4 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-alpha-37462'; +$wp_version = '4.6-alpha-37463'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.