diff --git a/src/wp-admin/_index.php b/src/wp-admin/_index.php index 4b4f149321ee..b21f7d7ce4bf 100644 --- a/src/wp-admin/_index.php +++ b/src/wp-admin/_index.php @@ -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. + */ + __( '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';