diff -r 48c4eec2b7e6 -r 8c2e4d02f4ef wp/wp-admin/about.php --- a/wp/wp-admin/about.php Fri Sep 05 18:40:08 2025 +0200 +++ b/wp/wp-admin/about.php Fri Sep 05 18:52:52 2025 +0200 @@ -13,7 +13,20 @@ /* translators: Page title of the About WordPress page in the admin. */ $title = _x( 'About', 'page title' ); -list( $display_version ) = explode( '-', get_bloginfo( 'version' ) ); +list( $display_version ) = explode( '-', wp_get_wp_version() ); +$display_major_version = '6.8'; + +$release_notes_url = sprintf( + /* translators: %s: WordPress version number. */ + __( 'https://wordpress.org/documentation/wordpress-version/version-%s/' ), + '6-8' +); + +$field_guide_url = sprintf( + /* translators: %s: WordPress version number. */ + __( 'https://make.wordpress.org/core/wordpress-%s-field-guide/' ), + '6-8' +); require_once ABSPATH . 'wp-admin/admin-header.php'; ?> @@ -51,10 +64,10 @@ _n( 'Version %1$s addressed %2$s bug.', 'Version %1$s addressed %2$s bugs.', - 26 + 35 ), - '6.6.2', - '26' + '6.8.2', + '35' ); ?> @@ -78,8 +91,8 @@ 'Version %1$s addressed %2$s bugs.', 16 ), - '6.6.1', - '16' + '6.8.1', + '15' ); ?> @@ -97,31 +110,40 @@ -
- -
+ + + ++ +
+ +
+ ++ the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customizer.' ), + add_query_arg( 'p', '/stylebook', admin_url( '/site-editor.php' ) ) + ); + } else { + _e( 'Plus, now you can see it in Classic themes that have editor-styles or a theme.json file. Find the Style Book under Appearance > Design and use it to preview your theme’s evolution, as you edit CSS or make changes in the Customizer.' ); + } + ?> +
++ +
+ +
+ +
WP_Query class. The goal is, as ever, to boost your site’s performance, in this case by taking some more of the load off your database. This is especially good if you get a lot of traffic.' ); ?>
+
- WP_Theme_JSON',
- 'data-wp-on-async
'
- );
- ?>
-
+
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.' ), + $display_major_version ); ?>
@@ -265,22 +303,26 @@+
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.' ), + $display_major_version ); ?>