diff --git a/wp-admin/edit-link-categories.php b/wp-admin/edit-link-categories.php index 31b2a184f..cefc2459c 100644 --- a/wp-admin/edit-link-categories.php +++ b/wp-admin/edit-link-categories.php @@ -51,6 +51,18 @@ wp_enqueue_script('admin-categories'); if ( current_user_can('manage_categories') ) wp_enqueue_script('inline-edit-tax'); +add_contextual_help($current_screen, '

' . __('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.') . '

' . + '

' . __('You can delete link categories, but that action does not delete the links within the category. Instead, it moves them to the default link category.') . '

' . +'

'. __('For more information:'). + +'

+' +); + require_once ('admin-header.php'); $messages[1] = __('Category added.'); diff --git a/wp-admin/edit-link-form.php b/wp-admin/edit-link-form.php index 2e84d6652..761c6c831 100644 --- a/wp-admin/edit-link-form.php +++ b/wp-admin/edit-link-form.php @@ -37,7 +37,18 @@ do_action('do_meta_boxes', 'link', 'normal', $link); do_action('do_meta_boxes', 'link', 'advanced', $link); do_action('do_meta_boxes', 'link', 'side', $link); -add_contextual_help($current_screen, drag_drop_help()); +add_contextual_help($current_screen, '

' . __('You can add or edit links on this screen by entering information in each of the boxes. Only the link\'s web address and name (the text you want to display on your site as the link) are required fields.') . '

' . + '

' . __('The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you don\'t use in the Screen Options tab, or minimize boxes by clicking on the title bar of the box.') . '

' . + '

' . __( sprintf('XFN stands for XHTML Friends Network, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of site to which you are linking.', 'http://gmpg.org/xfn/' ) ) . '

' . +'

'. __('For more information:'). + +'

+' +); require_once ('admin-header.php'); diff --git a/wp-admin/link-manager.php b/wp-admin/link-manager.php index 6be8cc4ba..5efec804b 100644 --- a/wp-admin/link-manager.php +++ b/wp-admin/link-manager.php @@ -43,6 +43,19 @@ if ( empty($order_by) ) $title = __('Links'); $this_file = $parent_file = 'link-manager.php'; + +add_contextual_help( $current_screen, '

' . __('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') . '

' . + '

' . __('Links may be separated into categories; these are different than the categories used on your posts.') . '

' . + '

' . __('You can customize the display of this screen using he Screen Options tab and/or the dropdown filters above the links table.') . '

' . + '

' . __('If you delete a link, it will be removed permanently, as Links do not have a Trash function yet. ') . '

' . + '

' . __('For more information:') . '

' . + '' + ); + include_once ('./admin-header.php'); if ( ! current_user_can('manage_links') )