Changeset 7230 for trunk/wp-admin/edit-tag-form.php
- Timestamp:
- 03/11/2008 07:23:07 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/edit-tag-form.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-tag-form.php
r7000 r7230 27 27 <tr class="form-field form-required"> 28 28 <th scope="row" valign="top"><label for="name"><?php _e('Tag name') ?></label></th> 29 <td><input name="name" id="name" type="text" value="<?php echo attribute_escape($tag->name); ?>" size="40" /></td> 29 <td><input name="name" id="name" type="text" value="<?php echo attribute_escape($tag->name); ?>" size="40" /> 30 <p><?php _e('The name is how the tag appears on your site.'); ?></p></td> 30 31 </tr> 31 32 <tr class="form-field"> 32 33 <th scope="row" valign="top"><label for="slug"><?php _e('Tag slug') ?></label></th> 33 <td><input name="slug" id="slug" type="text" value="<?php echo attribute_escape($tag->slug); ?>" size="40" /></td> 34 <td><input name="slug" id="slug" type="text" value="<?php echo attribute_escape($tag->slug); ?>" size="40" /> 35 <p><?php _e('The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?></p></td> 34 36 </tr> 35 37 </table>
Note: See TracChangeset
for help on using the changeset viewer.