From 2ab1e4dcd811cf4dc6679810c0cf40ea4f7225c0 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Tue, 15 Oct 2019 20:42:03 +0000 Subject: [PATCH] Help/About: Let's tell the world about 5.3. Props karmatosed, melchoyce, pierlo, ryelle, afercia, audrasjb, davidbaumwald Thanks to everyone who provided feedback for this page for 5.3. See #47708 Built from https://develop.svn.wordpress.org/trunk@46556 git-svn-id: http://core.svn.wordpress.org/trunk@46353 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/about.php | 238 +++++++++++++++++++++++----------------- wp-includes/version.php | 2 +- 2 files changed, 139 insertions(+), 101 deletions(-) diff --git a/wp-admin/about.php b/wp-admin/about.php index f5d86a9892..c44db2dce3 100644 --- a/wp-admin/about.php +++ b/wp-admin/about.php @@ -14,145 +14,183 @@ $title = _x( 'About', 'page title' ); list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); +$version_label = sprintf( + /* translators: The current WordPress version number */ + __( 'WordPress %s' ), + $display_version +); + include( ABSPATH . 'wp-admin/admin-header.php' ); ?>
-

- -

+
+
+

+ + WordPress +

+
-

- -

+
+ +
-
- +
+

+ +

+
+ +
- - -
-

-

-
- -
+
+

+ +


-
+
+
+
+ +
+
-

+

- the Site Health features introduced in 5.1, this release adds two new pages to help debug common configuration issues. It also adds space where developers can include debugging information for site maintainers.' ), - __( 'https://wordpress.org/news/2019/02/betty/' ) - ); + +

- if ( current_user_can( 'install_plugins' ) ) { - printf( - /* translators: 1: URL to Site Health Status screen, 2: URL to Site Health Info screen. */ - __( ' Check your site status, and learn how to debug issues.' ), - admin_url( 'site-health.php' ), - admin_url( 'site-health.php?tab=debug' ) - ); - } +

+ +

+
+
+ +
+
+

+

+
    +
  • +
  • +
  • +
  • +
  • +
+
+
+
+ +
+
+
+ +
+
+

+

+ +

+ Inter, designed by Rasmus Andersson. Inter comes in a Variable Font version, a first for default themes, which keeps load times short by containing all weights and styles of Inter in just two font files.' ), + 'https://rsms.me/inter/' + ); ?>

-
-
- +
+
+ +
+
+
+ +
+
+
+

-
+
+

+
-
- +

+

+
+
+

+

+
+
+

+

+
+
+ +
+
+
+
-
-

-

-

-

+
+

-
-
-

-

-
-
-

-

-
-
- -
- -

- -
-

-

-
-
-

-

-
-
-
-
-

+

- */ - __( '5.2 introduces a %1$s hook, which lets themes support injecting code right at the beginning of the %2$s element.' ), - 'wp_body_open', - '<body>' + /* translators: 1: Link to the date/time developer notes. */ + __( 'Developers can now work with dates and timezones in a more reliable way. Date and time functionality has received a number of new API functions for unified timezone retrieval and PHP interoperability, as well as many bug fixes.' ), + 'https://make.wordpress.org/core/2019/09/23/date-time-improvements-wp-5-3/' ); ?>

-

-

+

+

+ multiple changes to remove deprecated functionality and ensure compatibility. Please test 5.3 with PHP 7.4 to ensure all functionality continues to work as expected and does not raise any new warnings.' ), + 'https://make.wordpress.org/core/2019/10/11/wordpress-and-php-7-4/' + ); + ?> +

diff --git a/wp-includes/version.php b/wp-includes/version.php index 4c21cc8ff1..8d7a6821b6 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-beta3-46555'; +$wp_version = '5.3-beta3-46556'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.