Ticket #14663: 14663.diff
File 14663.diff, 1.2 KB (added by , 15 years ago) |
---|
-
wp-admin/edit-tag-form.php
48 48 <tr class="form-field"> 49 49 <th scope="row" valign="top"><label for="parent"><?php _ex('Parent', 'Taxonomy Parent'); ?></label></th> 50 50 <td> 51 <?php wp_dropdown_categories(array('hide_empty' => 0, 'hide_if_empty' => false, 'name' => 'parent', 'orderby' => 'name', 'taxonomy' => $taxonomy, 'selected' => $tag->parent, 'exclude ' => $tag->term_id, 'hierarchical' => true, 'show_option_none' => __('None'))); ?><br />51 <?php wp_dropdown_categories(array('hide_empty' => 0, 'hide_if_empty' => false, 'name' => 'parent', 'orderby' => 'name', 'taxonomy' => $taxonomy, 'selected' => $tag->parent, 'exclude_tree' => $tag->term_id, 'hierarchical' => true, 'show_option_none' => __('None'))); ?><br /> 52 52 <?php if ( 'category' == $taxonomy ) : ?> 53 53 <span class="description"><?php _e('Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.'); ?></span> 54 54 <?php endif; ?>