Changeset 14989 for trunk/wp-admin/edit-tags.php
- Timestamp:
- 05/27/2010 11:52:15 AM (16 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/edit-tags.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-tags.php
r14978 r14989 181 181 '<li>' . __('<strong>Name</strong> - The name is how it appears on your site.') . '</li>'; 182 182 if ( ! global_terms_enabled() ) 183 $help .= '<li>' . __('<strong>Slug</strong> - The “slug ” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.') . '</li>';183 $help .= '<li>' . __('<strong>Slug</strong> - The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.') . '</li>'; 184 184 185 185 if ( 'category' == $taxonomy ) … … 189 189 '</ul>' . 190 190 '<p>' . __('You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table.') . '</p>' . 191 '<p> ' . __('<strong>For more information:</strong>') . '</p>';191 '<p><strong>' . __('For more information:') . '</strong></p>'; 192 192 193 193 if ( 'category' == $taxonomy ) 194 $help .= '<p>' . sprintf(__('<a href="%s">Categories Documentation</a>'), 'http://codex.wordpress.org/Manage_Categories_SubPanel') . '</p>';195 else 196 $help .= '<p>' . sprintf(__('<a href="%s">Tags Documentation</a>'), 'http://codex.wordpress.org/Post_Tags_SubPanel') . '</p>';197 198 $help .= '<p>' . sprintf(__('<a href="%s">Support Forums</a>'), 'http://wordpress.org/support/') . '</p>';194 $help .= '<p>' . __('<a href="http://codex.wordpress.org/Manage_Categories_SubPanel">Categories Documentation</a>') . '</p>'; 195 else 196 $help .= '<p>' . __('<a href="http://codex.wordpress.org/Post_Tags_SubPanel">Tags Documentation</a>') . '</p>'; 197 198 $help .= '<p>' . __('<a href="http://wordpress.org/support/">Support Forums</a>') . '</p>'; 199 199 200 200 add_contextual_help($current_screen, $help);
Note: See TracChangeset
for help on using the changeset viewer.