Help for links pages. Props jorbin. see #13467

git-svn-id: https://develop.svn.wordpress.org/trunk@14909 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2010-05-25 22:45:18 +00:00
parent 6d50e25273
commit 779f739cca
3 changed files with 37 additions and 1 deletions
+13
View File
@@ -43,6 +43,19 @@ if ( empty($order_by) )
$title = __('Links');
$this_file = $parent_file = 'link-manager.php';
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>' .
'<p>' . __('Links may be separated into categories; these are different than the categories used on your posts.') . '</p>' .
'<p>' . __('You can customize the display of this screen using he Screen Options tab and/or the dropdown filters above the links table.') . '</p>' .
'<p>' . __('If you delete a link, it will be removed permanently, as Links do not have a Trash function yet. ') . '</p>' .
'<p>' . __('For more information:') . '</p>' .
'<ul>
<li>'.__( sprintf ('<a href="%1$s">%2$s</a>', 'http://codex.wordpress.org/Links_Edit_SubPanel', 'Link Management Documentation') ) .'</li>' .
' <li>'.__( sprintf ('<a href="%1$s">%2$s</a>', 'http://wordpress.org/support/', 'Support Forums') ) .'</li>' .
'</ul>'
);
include_once ('./admin-header.php');
if ( ! current_user_can('manage_links') )