X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/e08b42e8ad054ec67522d7ac1aaae5dc68cb3d01..849f15aeed7a5e39314057bdc0064d8edd60dd7d:/wp-admin/index.php diff --git a/wp-admin/index.php b/wp-admin/index.php index 88b1587f..a3c0742d 100644 --- a/wp-admin/index.php +++ b/wp-admin/index.php @@ -54,7 +54,7 @@ $screen->add_help_tab( array( $help = '

' . __( 'You can use the following controls to arrange your Dashboard screen to suit your workflow. This is true on most other administration screens as well.' ) . '

'; $help .= '

' . __( 'Screen Options - Use the Screen Options tab to choose which Dashboard boxes to show.' ) . '

'; $help .= '

' . __( 'Drag and Drop - To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a gray dotted-line rectangle appear in the location you want to place the box.' ) . '

'; -$help .= '

' . __( 'Box Controls - Click the title bar of the box to expand or collapse it. In addition, some boxes have configurable content, and will show a “Configure” link in the title bar if you hover over it.' ) . '

'; +$help .= '

' . __( 'Box Controls - Click the title bar of the box to expand or collapse it. Some boxes added by plugins may have configurable content, and will show a “Configure” link in the title bar if you hover over it.' ) . '

'; $screen->add_help_tab( array( 'id' => 'help-layout', @@ -64,14 +64,14 @@ $screen->add_help_tab( array( $help = '

' . __( 'The boxes on your Dashboard screen are:' ) . '

'; if ( current_user_can( 'edit_posts' ) ) - $help .= '

' . __( 'Site Content - Displays a summary of the content on your site and identifies which theme and version of WordPress you are using.' ) . '

'; -$help .= '

' . __( 'Activity - Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them.' ) . '

'; + $help .= '

' . __( 'At A Glance - Displays a summary of the content on your site and identifies which theme and version of WordPress you are using.' ) . '

'; + $help .= '

' . __( 'Activity - Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them.' ) . '

'; if ( is_blog_admin() && current_user_can( 'edit_posts' ) ) $help .= '

' . __( "Quick Draft - Allows you to create a new post and save it as a draft. Also displays links to the 5 most recent draft posts you've started." ) . '

'; if ( ! is_multisite() && current_user_can( 'install_plugins' ) ) - $help .= '

' . __( 'WordPress News - Latest news from the official WordPress project, the WordPress Planet, and popular and recent plugins.' ) . '

'; + $help .= '

' . __( 'WordPress News - Latest news from the official WordPress project, the WordPress Planet, and popular and recent plugins.' ) . '

'; else - $help .= '

' . __( 'WordPress News - Latest news from the official WordPress project, the WordPress Planet.' ) . '

'; + $help .= '

' . __( 'WordPress News - Latest news from the official WordPress project, the WordPress Planet.' ) . '

'; if ( current_user_can( 'edit_theme_options' ) ) $help .= '

' . __( 'Welcome - Shows links for some of the most common tasks when setting up a new site.' ) . '

'; @@ -86,7 +86,7 @@ unset( $help ); $screen->set_help_sidebar( '

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

' . '

' . __( 'Documentation on Dashboard' ) . '

' . - '

' . __( 'Support Forums' ) . '

' + '

' . __( 'Support Forums' ) . '

' ); include( ABSPATH . 'wp-admin/admin-header.php' ); @@ -111,8 +111,9 @@ include( ABSPATH . 'wp-admin/admin-header.php' ); /** * Add content to the welcome panel on the admin dashboard. * - * To remove the default welcome panel, use remove_action(): - * remove_action( 'welcome_panel', 'wp_welcome_panel' ); + * To remove the default welcome panel, use {@see remove_action()}: + * + * remove_action( 'welcome_panel', 'wp_welcome_panel' ); * * @since 3.5.0 */