From 88e9e36233b1fcca69ccf2270bcacf1a93a562f8 Mon Sep 17 00:00:00 2001 From: johnjamesjacoby Date: Tue, 2 Nov 2021 19:09:03 +0000 Subject: [PATCH] Help/About: add WordPress version to contextual "Help" sidebar area. 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. Built from https://develop.svn.wordpress.org/trunk@51985 git-svn-id: http://core.svn.wordpress.org/trunk@51574 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/index.php | 22 +++++++++++++++++++++- wp-includes/version.php | 2 +- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/wp-admin/index.php b/wp-admin/index.php index 4b4f149321..b21f7d7ce4 100644 --- a/wp-admin/index.php +++ b/wp-admin/index.php @@ -107,10 +107,30 @@ $screen->add_help_tab( 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. + */ + __( 'Version %2$s' ), + esc_url( 'https://wordpress.org/support/wordpress-version/version-' . str_replace( '.', '-', $wp_version ) ), + $wp_version + ); +} + $screen->set_help_sidebar( '

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

' . '

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

' . - '

' . __( 'Support' ) . '

' + '

' . __( 'Support' ) . '

' . + '

' . $wp_version_text . '

' ); require_once ABSPATH . 'wp-admin/admin-header.php'; diff --git a/wp-includes/version.php b/wp-includes/version.php index 86fc8c3bef..a49d5a8420 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-51984'; +$wp_version = '5.9-alpha-51985'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.