Ticket #34545: 34545.diff
File 34545.diff, 1.1 KB (added by , 8 years ago) |
---|
-
src/wp-admin/edit-tag-form.php
146 146 <?php } ?> 147 147 <?php if ( is_taxonomy_hierarchical($taxonomy) ) : ?> 148 148 <tr class="form-field term-parent-wrap"> 149 <th scope="row"><label for="parent"><?php _ex( 'Parent', 'term parent'); ?></label></th>149 <th scope="row"><label for="parent"><?php echo esc_html( $tax->labels->parent_item ); ?></label></th> 150 150 <td> 151 151 <?php 152 152 $dropdown_args = array( -
src/wp-admin/edit-tags.php
399 399 <?php endif; // global_terms_enabled() ?> 400 400 <?php if ( is_taxonomy_hierarchical($taxonomy) ) : ?> 401 401 <div class="form-field term-parent-wrap"> 402 <label for="parent"><?php _ex( 'Parent', 'term parent'); ?></label>402 <label for="parent"><?php echo esc_html( $tax->labels->parent_item ); ?></label> 403 403 <?php 404 404 $dropdown_args = array( 405 405 'hide_empty' => 0,