Help/About: Improve the Welcome text in `wp-admin/_index.php`.
Improves the `Welcome to your WordPress Dashboard!` copy in the `Overview` section of the help tab. Follow-up to [18914], [19007], [37680]. Props webcommsat, marybaum, costdev, audrasjb. Fixes #54321. Built from https://develop.svn.wordpress.org/trunk@51995 git-svn-id: http://core.svn.wordpress.org/trunk@51584 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
973f1f1cac
commit
22e4a52258
|
@ -33,7 +33,8 @@ if ( wp_is_mobile() ) {
|
||||||
$title = __( 'Dashboard' );
|
$title = __( 'Dashboard' );
|
||||||
$parent_file = 'index.php';
|
$parent_file = 'index.php';
|
||||||
|
|
||||||
$help = '<p>' . __( 'Welcome to your WordPress Dashboard! This is the screen you will see when you log in to your site, and gives you access to all the site management features of WordPress. You can get help for any screen by clicking the Help tab above the screen title.' ) . '</p>';
|
$help = '<p>' . __( 'Welcome to your WordPress Dashboard!' ) . '</p>';
|
||||||
|
$help .= '<p>' . __( 'The Dashboard is the first place you will come to every time you log into your site. It is where you will find all your WordPress tools. If you need help, just click the "Help" tab above the screen title.' ) . '</p>';
|
||||||
|
|
||||||
$screen = get_current_screen();
|
$screen = get_current_screen();
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.9-alpha-51994';
|
$wp_version = '5.9-alpha-51995';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue