Changeset 11511
- Timestamp:
- 06/03/2009 11:50:06 AM (16 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-category-form.php
r11380 r11511 51 51 <th scope="row" valign="top"><label for="cat_name"><?php _e('Category Name') ?></label></th> 52 52 <td><input name="cat_name" id="cat_name" type="text" value="<?php echo esc_attr($category->name); ?>" size="40" aria-required="true" /><br /> 53 < ?php _e('The name is used to identify the category almost everywhere, for example under the post or in the category widget.'); ?></td>53 <span class="description"><?php _e('The name is used to identify the category almost everywhere, for example under the post or in the category widget.'); ?></span></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 57 <td><input name="category_nicename" id="category_nicename" type="text" value="<?php echo esc_attr(apply_filters('editable_slug', $category->slug)); ?>" size="40" /><br /> 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>58 <span class="description"><?php _e('The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?></span></td> 59 59 </tr> 60 60 <tr class="form-field"> … … 62 62 <td> 63 63 <?php wp_dropdown_categories(array('hide_empty' => 0, 'name' => 'category_parent', 'orderby' => 'name', 'selected' => $category->parent, 'hierarchical' => true, 'show_option_none' => __('None'))); ?><br /> 64 < ?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.'); ?>64 <span 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.'); ?></span> 65 65 </td> 66 66 </tr> … … 68 68 <th scope="row" valign="top"><label for="category_description"><?php _e('Description') ?></label></th> 69 69 <td><textarea name="category_description" id="category_description" rows="5" cols="50" style="width: 97%;"><?php echo esc_html($category->description); ?></textarea><br /> 70 < ?php _e('The description is not prominent by default, however some themes may show it.'); ?></td>70 <span class="description"><?php _e('The description is not prominent by default, however some themes may show it.'); ?></span></td> 71 71 </tr> 72 72 </table> -
trunk/wp-admin/edit-tag-form.php
r11380 r11511 28 28 <th scope="row" valign="top"><label for="name"><?php _e('Tag name') ?></label></th> 29 29 <td><input name="name" id="name" type="text" value="<?php if ( isset( $tag->name ) ) echo esc_attr($tag->name); ?>" size="40" aria-required="true" /> 30 <p ><?php _e('The name is how the tag appears on your site.'); ?></p></td>30 <p class="description"><?php _e('The name is how the tag appears on your site.'); ?></p></td> 31 31 </tr> 32 32 <tr class="form-field"> 33 33 <th scope="row" valign="top"><label for="slug"><?php _e('Tag slug') ?></label></th> 34 34 <td><input name="slug" id="slug" type="text" value="<?php if ( isset( $tag->slug ) ) echo esc_attr(apply_filters('editable_slug', $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>35 <p class="description"><?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> 36 36 </tr> 37 37 <tr class="form-field"> 38 38 <th scope="row" valign="top"><label for="description"><?php _e('Description') ?></label></th> 39 39 <td><textarea name="description" id="description" rows="5" cols="50" style="width: 97%;"><?php echo esc_html($tag->description); ?></textarea><br /> 40 < ?php _e('The description is not prominent by default, however some themes may show it.'); ?></td>40 <span class="description"><?php _e('The description is not prominent by default, however some themes may show it.'); ?></span></td> 41 41 </tr> 42 42 </table> -
trunk/wp-admin/wp-admin.css
r11444 r11511 1415 1415 1416 1416 p.help, 1417 .description, 1417 p.description, 1418 span.description, 1418 1419 .form-wrap p { 1419 1420 font-size: 12px;
Note: See TracChangeset
for help on using the changeset viewer.