diff --git a/wp-admin/about.php b/wp-admin/about.php index ad87ec8f67..5a04723ae8 100644 --- a/wp-admin/about.php +++ b/wp-admin/about.php @@ -15,6 +15,18 @@ $title = _x( 'About', 'page title' ); list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); +$release_notes_url = sprintf( + /* translators: %s: WordPress version number. */ + __( 'https://wordpress.org/documentation/wordpress-version/version-%s/' ), + '6-7' +); + +$field_guide_url = sprintf( + /* translators: %s: WordPress version number. */ + __( 'https://make.wordpress.org/core/wordpress-%s-field-guide/' ), + '6-7' +); + require_once ABSPATH . 'wp-admin/admin-header.php'; ?>
@@ -53,19 +65,22 @@ require_once ABSPATH . 'wp-admin/admin-header.php'; ?>

- +

-

-

+

+

+
+ +

- +
@@ -73,23 +88,29 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
- +
-

-

+

+

+
+ +

-

-

+

+

+
+ +

- +
@@ -97,12 +118,15 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
- +
-

-

+

+

+
+ +

@@ -112,35 +136,21 @@ require_once ABSPATH . 'wp-admin/admin-header.php';

-

- WP_Theme_JSON', - 'data-wp-on-async' - ); - ?> -

+

-

+

@@ -149,11 +159,19 @@ require_once ABSPATH . 'wp-admin/admin-header.php';

-

+

+ +

- +
@@ -162,7 +180,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
- +

@@ -191,17 +209,27 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
-

+

+ + + +

+

WordPress %2$s Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress.' ), - esc_url( __( 'https://make.wordpress.org/core/wordpress-6-6-field-guide/' ) ), - '6.6' + /* translators: %s: WordPress version number. */ + __( 'Read the WordPress %s Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.' ), + '6.7' ); ?>

@@ -209,22 +237,26 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
-

+

+ + + +

+

Read the WordPress %2$s Release Notes for information on installation, enhancements, fixed issues, release contributors, learning resources, and the list of file changes.' ), - sprintf( - /* translators: %s: WordPress version number. */ - esc_url( __( 'https://wordpress.org/documentation/wordpress-version/version-%s/' ) ), - '6-6' - ), - '6.6' + /* translators: %s: WordPress version number. */ + __( 'Explore the WordPress %s Field Guide. Learn about the changes in this release with detailed developer notes to help you build with WordPress.' ), + '6.7' ); ?>

diff --git a/wp-admin/images/about-release-badge.svg b/wp-admin/images/about-release-badge.svg index 3afbbb61aa..1af055ab6b 100644 --- a/wp-admin/images/about-release-badge.svg +++ b/wp-admin/images/about-release-badge.svg @@ -1,4 +1,4 @@ - - + + diff --git a/wp-includes/version.php b/wp-includes/version.php index b82d26cfce..b17164629c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-beta2-59233'; +$wp_version = '6.7-beta2-59234'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.