Changeset 52163 for trunk/src/wp-admin/edit-tag-form.php
- Timestamp:
- 11/15/2021 04:43:29 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-tag-form.php
r52094 r52163 147 147 <th scope="row"><label for="name"><?php _ex( 'Name', 'term name' ); ?></label></th> 148 148 <td><input name="name" id="name" type="text" value="<?php echo $tag_name_value; ?>" size="40" aria-required="true" /> 149 <p class="description"><?php echo $tax->labels->name_ description; ?></p></td>149 <p class="description"><?php echo $tax->labels->name_field_description; ?></p></td> 150 150 </tr> 151 151 <?php if ( ! global_terms_enabled() ) { ?> … … 169 169 ?> 170 170 <td><input name="slug" id="slug" type="text" value="<?php echo esc_attr( $slug ); ?>" size="40" /> 171 <p class="description"><?php echo $tax->labels->slug_ description; ?></p></td>171 <p class="description"><?php echo $tax->labels->slug_field_description; ?></p></td> 172 172 </tr> 173 173 <?php } ?> … … 196 196 <p 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.' ); ?></p> 197 197 <?php else : ?> 198 <p class="description"><?php echo $tax->labels->parent_ description; ?></p>198 <p class="description"><?php echo $tax->labels->parent_field_description; ?></p> 199 199 <?php endif; ?> 200 200 </td> … … 204 204 <th scope="row"><label for="description"><?php _e( 'Description' ); ?></label></th> 205 205 <td><textarea name="description" id="description" rows="5" cols="50" class="large-text"><?php echo $tag->description; // textarea_escaped ?></textarea> 206 <p class="description"><?php echo $tax->labels->desc ription_description; ?></p></td>206 <p class="description"><?php echo $tax->labels->desc_field_description; ?></p></td> 207 207 </tr> 208 208 <?php
Note: See TracChangeset
for help on using the changeset viewer.