Changeset 19507 for trunk/wp-admin/options-permalink.php
- Timestamp:
- 12/01/2011 12:52:31 AM (14 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/options-permalink.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-permalink.php
r19472 r19507 17 17 18 18 get_current_screen()->add_help_tab( array( 19 'id' => 'options-permalinks', 20 'title' => __('Permalink Options'), 21 'content' => '<p>' . __('This screen provides some common options for your default permalinks URL structure.') . '</p>' . 19 'id' => 'overview', 20 'title' => __('Overview'), 21 'content' => '<p>' . __('Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change — hence the name permalink.') . '</p>' . 22 '<p>' . __('This screen provides allows you to choose your default permalink structure. You can choose from common settings or create custom URL structures.') . '</p>' . 23 '<p>' . __('When making changes, you must click the Save Changes button at the bottom of the screen for the new settings to take effect.') . '</p>', 24 ) ); 25 26 get_current_screen()->add_help_tab( array( 27 'id' => 'common-settings', 28 'title' => __('Common Settings'), 29 'content' => '<p>' . __('Many people choose to use “pretty permalinks,” URLs that contain useful information such as the post title rather than generic post ID numbers. You can choose from any of the permalink formats under Common Settings, or can craft your own if you select Custom Structure.') . '</p>' . 22 30 '<p>' . __('If you pick an option other than Default, your general URL path with structure tags, terms surrounded by <code>%</code>, will also appear in the custom structure field and your path can be further modified there.') . '</p>' . 23 31 '<p>' . __('When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes <code>%category%</code> or <code>%tag%</code>.') . '</p>' . 24 '<p>' . __('The Optional fields let you customize the “category” and “tag” base names that will appear in archive URLs. For example, the page listing all posts in the “Uncategorized” category could be <code>/topics/uncategorized</code> instead of <code>/category/uncategorized</code>.') . '</p>' . 32 '<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>', 33 ) ); 34 35 get_current_screen()->add_help_tab( array( 36 'id' => 'custom-structures', 37 'title' => __('Custom Structures'), 38 'content' => '<p>' . __('The Optional fields let you customize the “category” and “tag” base names that will appear in archive URLs. For example, the page listing all posts in the “Uncategorized” category could be <code>/topics/uncategorized</code> instead of <code>/category/uncategorized</code>.') . '</p>' . 25 39 '<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>', 26 40 ) ); … … 177 191 ); 178 192 ?> 179 <h3><?php _e('Common settings'); ?></h3>193 <h3><?php _e('Common Settings'); ?></h3> 180 194 <table class="form-table"> 181 195 <tr>
Note: See TracChangeset
for help on using the changeset viewer.