Help/About: Adjust capability checks formatting in help text on Dashboard screen for readability and consistency with similar checks in other files.
See #43472. Built from https://develop.svn.wordpress.org/trunk@42783 git-svn-id: http://core.svn.wordpress.org/trunk@42613 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
24f13abf63
commit
084b48e1ba
|
@ -71,18 +71,23 @@ $screen->add_help_tab(
|
|||
);
|
||||
|
||||
$help = '<p>' . __( 'The boxes on your Dashboard screen are:' ) . '</p>';
|
||||
|
||||
if ( current_user_can( 'edit_posts' ) ) {
|
||||
$help .= '<p>' . __( '<strong>At A Glance</strong> — Displays a summary of the content on your site and identifies which theme and version of WordPress you are using.' ) . '</p>';
|
||||
}
|
||||
$help .= '<p>' . __( '<strong>Activity</strong> — Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them.' ) . '</p>';
|
||||
|
||||
$help .= '<p>' . __( '<strong>Activity</strong> — Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them.' ) . '</p>';
|
||||
|
||||
if ( is_blog_admin() && current_user_can( 'edit_posts' ) ) {
|
||||
$help .= '<p>' . __( "<strong>Quick Draft</strong> — 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." ) . '</p>';
|
||||
}
|
||||
|
||||
$help .= '<p>' . sprintf(
|
||||
/* translators: %s: WordPress Planet URL */
|
||||
__( '<strong>WordPress Events and News</strong> — Upcoming events near you as well as the latest news from the official WordPress project and the <a href="%s">WordPress Planet</a>.' ),
|
||||
__( 'https://planet.wordpress.org/' )
|
||||
) . '</p>';
|
||||
|
||||
if ( current_user_can( 'edit_theme_options' ) ) {
|
||||
$help .= '<p>' . __( '<strong>Welcome</strong> — Shows links for some of the most common tasks when setting up a new site.' ) . '</p>';
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.0-alpha-42782';
|
||||
$wp_version = '5.0-alpha-42783';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue