Skip to content

Commit

Permalink
Help/About: add WordPress version to contextual "Help" sidebar area.
Browse files Browse the repository at this point in the history
This change adds a new way for users to quickly identify what version of WordPress they are looking at, directly from the "Help" sidebar on the main "Dashboard" page.

* Stable versions will link to their respective support documents.
* Development versions (alpha/beta/RC) will not link anywhere.

Props audrasjb, costdev, donmhico, hellofromtonya, ipstenu, justinahinon, karmatosed, knutsp, marybaum, sergeybiryukov, webcommsat.

Fixes #47848.

git-svn-id: https://develop.svn.wordpress.org/trunk@51985 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
JJJ committed Nov 2, 2021
1 parent 8f9eea8 commit 9007b1d
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion src/wp-admin/_index.php
Expand Up @@ -107,10 +107,30 @@

unset( $help );

$wp_version = get_bloginfo( 'version', 'display' );
$is_dev_version = preg_match( '/alpha|beta|RC/', $wp_version );

if ( $is_dev_version ) {
/* translators: %s. The WordPress version. */
$wp_version_text = sprintf( __( 'Version %s' ), $wp_version );
} else {
$wp_version_text = sprintf(
/*
* translators:
* 1. A link to the changelog ending with the WordPress version where '.' is replaced by '-'.
* 2. The WordPress version.
*/
__( '<a href="%1$s">Version %2$s</a>' ),
esc_url( 'https://wordpress.org/support/wordpress-version/version-' . str_replace( '.', '-', $wp_version ) ),
$wp_version
);
}

$screen->set_help_sidebar(
'<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
'<p>' . __( '<a href="https://wordpress.org/support/article/dashboard-screen/">Documentation on Dashboard</a>' ) . '</p>' .
'<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>'
'<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' .
'<p>' . $wp_version_text . '</p>'
);

require_once ABSPATH . 'wp-admin/admin-header.php';
Expand Down

0 comments on commit 9007b1d

Please sign in to comment.