Changeset 11109 for trunk/wp-admin/edit-category-form.php
- Timestamp:
- 04/28/2009 05:58:45 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-category-form.php
r11104 r11109 50 50 <tr class="form-field form-required"> 51 51 <th scope="row" valign="top"><label for="cat_name"><?php _e('Category Name') ?></label></th> 52 <td><input name="cat_name" id="cat_name" type="text" value="<?php echo attr ibute_escape($category->name); ?>" size="40" aria-required="true" /><br />52 <td><input name="cat_name" id="cat_name" type="text" value="<?php echo attr($category->name); ?>" size="40" aria-required="true" /><br /> 53 53 <?php _e('The name is used to identify the category almost everywhere, for example under the post or in the category widget.'); ?></td> 54 54 </tr> 55 55 <tr class="form-field"> 56 56 <th scope="row" valign="top"><label for="category_nicename"><?php _e('Category Slug') ?></label></th> 57 <td><input name="category_nicename" id="category_nicename" type="text" value="<?php echo attr ibute_escape(apply_filters('editable_slug', $category->slug)); ?>" size="40" /><br />57 <td><input name="category_nicename" id="category_nicename" type="text" value="<?php echo attr(apply_filters('editable_slug', $category->slug)); ?>" size="40" /><br /> 58 58 <?php _e('The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?></td> 59 59 </tr>
Note: See TracChangeset
for help on using the changeset viewer.