Changeset 29803 for trunk/src/wp-admin/edit-tag-form.php
- Timestamp:
- 10/02/2014 12:28:45 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-tag-form.php
r27029 r29803 81 81 <?php wp_original_referer_field(true, 'previous'); wp_nonce_field('update-tag_' . $tag_ID); ?> 82 82 <table class="form-table"> 83 <tr class="form-field form-required ">83 <tr class="form-field form-required term-name-wrap"> 84 84 <th scope="row"><label for="name"><?php _ex('Name', 'Taxonomy Name'); ?></label></th> 85 85 <td><input name="name" id="name" type="text" value="<?php if ( isset( $tag->name ) ) echo esc_attr($tag->name); ?>" size="40" aria-required="true" /> … … 87 87 </tr> 88 88 <?php if ( !global_terms_enabled() ) { ?> 89 <tr class="form-field ">89 <tr class="form-field term-slug-wrap"> 90 90 <th scope="row"><label for="slug"><?php _ex('Slug', 'Taxonomy Slug'); ?></label></th> 91 91 <?php … … 103 103 <?php } ?> 104 104 <?php if ( is_taxonomy_hierarchical($taxonomy) ) : ?> 105 <tr class="form-field ">105 <tr class="form-field term-parent-wrap"> 106 106 <th scope="row"><label for="parent"><?php _ex('Parent', 'Taxonomy Parent'); ?></label></th> 107 107 <td> … … 113 113 </tr> 114 114 <?php endif; // is_taxonomy_hierarchical() ?> 115 <tr class="form-field ">115 <tr class="form-field term-description-wrap"> 116 116 <th scope="row"><label for="description"><?php _ex('Description', 'Taxonomy Description'); ?></label></th> 117 117 <td><textarea name="description" id="description" rows="5" cols="50" class="large-text"><?php echo $tag->description; // textarea_escaped ?></textarea><br />
Note: See TracChangeset
for help on using the changeset viewer.