Changeset 17014 for trunk/wp-admin/edit-tags.php
- Timestamp:
- 12/17/2010 03:32:46 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-tags.php
r17006 r17014 161 161 $help =''; 162 162 if ( 'category' == $taxonomy ) 163 $help .= '<p>' . sprintf(__( 'You can use categories to define sections of your site and group related posts. The default category is “Uncategorized” until you change it in your <a href="%s">writing settings</a>.' ) , 'options-writing.php' ) . '</p>';164 elseif ( 'link_category' == $taxonomy ) 165 $help .= '<p>' . __( 'You can create groups of links by using link categories. Link category names must be unique and link categories are separate from the categories you use for posts.' ) . '</p>';166 else 167 $help .= '<p>' . __( 'You can assign keywords to your posts using Post Tags. Unlike categories, tags have no hierarchy, meaning there’s no relationship from one tag to another.' ) . '</p>';168 169 if ( 'link_category' == $taxonomy ) 163 $help = '<p>' . sprintf(__( 'You can use categories to define sections of your site and group related posts. The default category is “Uncategorized” until you change it in your <a href="%s">writing settings</a>.' ) , 'options-writing.php' ) . '</p>'; 164 elseif ( 'link_category' == $taxonomy ) 165 $help = '<p>' . __( 'You can create groups of links by using link categories. Link category names must be unique and link categories are separate from the categories you use for posts.' ) . '</p>'; 166 else 167 $help = '<p>' . __( 'You can assign keywords to your posts using Post Tags. Unlike categories, tags have no hierarchy, meaning there’s no relationship from one tag to another.' ) . '</p>'; 168 169 if ( 'link_category' == $taxonomy ) 170 170 $help .= '<p>' . __( 'You can delete link categories in the Bulk Action pulldown, but that action does not delete the links within the category. Instead, it moves them to the default link category.' ) . '</p>'; 171 171 else … … 174 174 if ( 'category' == $taxonomy ) 175 175 $help .= '<p>' . __( 'When adding a new category on this screen, you’ll fill in the following fields:' ) . '</p>'; 176 elseif ( 'post_tag' == $taxonomy ) 176 elseif ( 'post_tag' == $taxonomy ) 177 177 $help .= '<p>' . __( 'When adding a new tag on this screen, you’ll fill in the following fields:' ) . '</p>'; 178 178 … … 181 181 $help .= '<ul>' . 182 182 '<li>' . __( '<strong>Name</strong> - The name is how it appears on your site.' ) . '</li>'; 183 183 184 184 if ( ! global_terms_enabled() ) 185 185 if ( 'category' == $taxonomy || 'post_tag' == $taxonomy )
Note: See TracChangeset
for help on using the changeset viewer.