Changeset 14965 for trunk/wp-admin/link-manager.php
- Timestamp:
- 05/26/2010 09:32:30 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/link-manager.php
r14909 r14965 45 45 $this_file = $parent_file = 'link-manager.php'; 46 46 47 add_contextual_help( $current_screen, '<p>' . __('You can add links here to be displayed on your site, usually using Widgets [link to wp-admin/widgets.php]. By default, links to several sites in WordPress community are included as examples') . '</p>' .47 add_contextual_help( $current_screen, '<p>' . sprintf(__('You can add links here to be displayed on your site, usually using <a href="%s">Widgets</a>. By default, links to several sites in WordPress community are included as examples'), 'widgets.php') . '</p>' . 48 48 '<p>' . __('Links may be separated into categories; these are different than the categories used on your posts.') . '</p>' . 49 '<p>' . __('You can customize the display of this screen using he Screen Options tab and/or the dropdown filters above the links table.') . '</p>' .49 '<p>' . __('You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table.') . '</p>' . 50 50 '<p>' . __('If you delete a link, it will be removed permanently, as Links do not have a Trash function yet. ') . '</p>' . 51 '<p>' . __('For more information:') . '</p>' . 52 '<ul> 53 <li>'.__( sprintf ('<a href="%1$s">%2$s</a>', 'http://codex.wordpress.org/Links_Edit_SubPanel', 'Link Management Documentation') ) .'</li>' . 54 ' <li>'.__( sprintf ('<a href="%1$s">%2$s</a>', 'http://wordpress.org/support/', 'Support Forums') ) .'</li>' . 55 56 '</ul>' 57 ); 51 '<p>' . __('<strong>For more information:</strong>') . '</p>' . 52 '<p>'. sprintf(__('<a href="%1$s">Link Management Documentation</a>'), 'http://codex.wordpress.org/Links_Edit_SubPanel') . '</p>' . 53 '<p>'. sprintf(__('<a href="%1$s">Support Forums</a>'), 'http://wordpress.org/support/') . '</p>' 54 ); 58 55 59 56 include_once ('./admin-header.php');
Note: See TracChangeset
for help on using the changeset viewer.