diff --git a/wp-admin/edit-comments.php b/wp-admin/edit-comments.php index ec0b020c03..bd37f7f887 100644 --- a/wp-admin/edit-comments.php +++ b/wp-admin/edit-comments.php @@ -112,14 +112,14 @@ else add_screen_option( 'per_page', array('label' => _x( 'Comments', 'comments per page (screen options)' )) ); get_current_screen()->add_help_tab( array( -'id' => 'managing-comments', -'title' => __('Managing Comments'), +'id' => 'overview', +'title' => __('Overview'), 'content' => '
' . __( 'You can manage comments made on your site similar to the way you manage posts and other content. This screen is customizable in the same ways as other management screens, and you can act on comments using the on-hover action links or the Bulk Actions.' ) . '
' ) ); get_current_screen()->add_help_tab( array( -'id' => 'comments-table', -'title' => __('Comments Table'), +'id' => 'moderating-comments', +'title' => __('Moderating Comments'), 'content' => '' . __('You can customize the display of this screen in a number of ways:') . '
' . + '' . __('This screen provides access to all of your posts. You can customize the display of this screen to suit your workflow.') . '
' + ) ); + get_current_screen()->add_help_tab( array( + 'id' => 'screen-content', + 'title' => __('Screen Content'), + 'content' => + '' . __('You can customize the display of this screen’s contents in a number of ways:') . '
' . '' . __('Hovering over a row in the posts list will display action links that allow you to manage your post. You can perform the following actions:') . '
' . '' . __('You can also edit multiple posts at once. Select the posts you want to edit using the checkboxes, select Edit from the Bulk Actions menu and click Apply. You will be able to change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the x next to its name in the Bulk Edit area that appears.') . '
' + '' . __('You can also edit or move multiple posts to the trash at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk Actions menu and click Apply.') . '
' . + '' . __('When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the x next to its name in the Bulk Edit area that appears.') . '
' ) ); get_current_screen()->set_help_sidebar( diff --git a/wp-admin/media-upload.php b/wp-admin/media-upload.php index 68f7588d51..fb1eda5536 100644 --- a/wp-admin/media-upload.php +++ b/wp-admin/media-upload.php @@ -61,16 +61,10 @@ if ( isset($_GET['inline']) ) { $title = __('Upload New Media'); $parent_file = 'upload.php'; get_current_screen()->add_help_tab( array( - 'id' => 'adding-media', - 'title' => __('Adding Media'), + 'id' => 'overview', + 'title' => __('Overview'), 'content' => - '' . __('You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share.') . '
' - ) ); - get_current_screen()->add_help_tab( array( - 'id' => 'editing-new-media', - 'title' => __('Editing New Media'), - 'content' => - '' . __('There are three options for uploading files:') . + '
' . __('You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:') . '
' . '' . __('This screen lets you update to the latest version of WordPress as well as update your themes and plugins from the WordPress.org repository. When updates are available, the number of available updates will appear in a bubble on the left hand menu as a notification. It is very important to keep your WordPress installation up to date for security reasons, so when you see a number appear, make sure you take the time to update, which is an easy process.') . '
' . + '' . __('This screen lets you update to the latest version of WordPress as well as update your themes and plugins from the WordPress.org repository. When updates are available, the number of available updates will appear in a bubble on the left hand menu as a notification.') . '
' . + '' . __('It is very important to keep your WordPress installation up to date for security reasons, so when you see a number appear, make sure you take the time to update, which is an easy process.') . '
' +) ); + +get_current_screen()->add_help_tab( array( +'id' => 'how-to-update', +'title' => __('How to Update'), +'content' => '' . __('Updating your WordPress installation is a simple one-click procedure; just click on the Update button when it says a new version is available.') . '
' . '' . __('To update themes or plugins from this screen, use the checkboxes to make your selection and click on the appropriate Update button. Check the box at the top of the Themes or Plugins section to select all and update them all at once.') . '
' ) ); + get_current_screen()->set_help_sidebar( '' . __('For more information:') . '
' . '' . __('Documentation on Updating WordPress') . '
' . diff --git a/wp-admin/upload.php b/wp-admin/upload.php index 867450b385..20d3e30aa2 100644 --- a/wp-admin/upload.php +++ b/wp-admin/upload.php @@ -154,13 +154,13 @@ get_current_screen()->add_help_tab( array( ) ); get_current_screen()->add_help_tab( array( 'id' => 'actions-links', -'title' => __('Action Links'), +'title' => __('Available Actions'), 'content' => '' . __( 'Hovering over a row reveals action links: Edit, Delete Permanently, and View. Clicking Edit or on the media file’s name displays a simple screen to edit that individual file’s metadata. Clicking Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached). View will take you to the display page for that file.' ) . '
' ) ); get_current_screen()->add_help_tab( array( -'id' => 'attach-media-files', -'title' => __('Attach Media Files'), +'id' => 'attaching-files', +'title' => __('Attaching Files'), 'content' => '' . __( 'If a media file has not been attached to any post, you will see that in the Attached To column, and can click on Attach File to launch a small popup that will allow you to search for a post and attach the file.' ) . '
' ) );