From 3fe0cb97a560ca7baf87b3c435a18d1828869d7d Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 5 Mar 2018 03:31:06 +0000 Subject: [PATCH] Help/About: Adjust capability checks formatting in help text on Dashboard screen for readability and consistency with similar checks in other files. See #43472. git-svn-id: https://develop.svn.wordpress.org/trunk@42783 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/index.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/wp-admin/index.php b/src/wp-admin/index.php index 58f2bf21df..368dd7dd59 100644 --- a/src/wp-admin/index.php +++ b/src/wp-admin/index.php @@ -71,18 +71,23 @@ $screen->add_help_tab( ); $help = '

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

'; + if ( current_user_can( 'edit_posts' ) ) { $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.' ) . '

'; + +$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 3 most recent draft posts you've started." ) . '

'; } + $help .= '

' . sprintf( /* translators: %s: WordPress Planet URL */ __( 'WordPress Events and News — Upcoming events near you as well as the latest news from the official WordPress project and the WordPress Planet.' ), __( 'https://planet.wordpress.org/' ) ) . '

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

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

'; }