Commit 940483092b for wordpress.org

commit 940483092bfffaa816da1916f25269be2514d765
Author: Peter Wilson <wilson@peterwilson.cc>
Date:   Tue Nov 18 03:26:30 2025 +0000

    Help/About: Spell out abbreviation in About page text.

    Removes the `title` attribute from the `abbr` element in favour of inline text `LCP (Largest Contentful Paint)` to improve accessibility of the phrase as the `title` attribute is often unavailable to assistive technology users.

    Props wildworks, ryelle.
    See #63941.

    Built from https://develop.svn.wordpress.org/trunk@61258


    git-svn-id: http://core.svn.wordpress.org/trunk@60570 1a063a9b-81f0-0310-95a4-ce76da25c4cd

diff --git a/wp-admin/about.php b/wp-admin/about.php
index b9dfe7e9e7..45c9549b04 100644
--- a/wp-admin/about.php
+++ b/wp-admin/about.php
@@ -138,7 +138,7 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
 					</svg>
 				</div>
 				<h3><?php _e( 'Performance updates' ); ?></h3>
-				<p><?php _e( 'WordPress 6.9 includes a broad set of performance enhancements. A better <abbr title="Largest Contentful Paint">LCP</abbr> metric is achieved through improved loading of conditional and inlined stylesheets, script loading with fetchpriority support, and additional core optimizations. Editor advances include fixes for layout shifts caused by the Video block and faster loading of the terms selector.' ); ?></p>
+				<p><?php _e( 'WordPress 6.9 includes a broad set of performance enhancements. A better <abbr>LCP</abbr> (Largest Contentful Paint) metric is achieved through improved loading of conditional and inlined stylesheets, script loading with fetchpriority support, and additional core optimizations. Editor advances include fixes for layout shifts caused by the Video block and faster loading of the terms selector.' ); ?></p>
 			</div>
 			<div class="column">
 				<div class="about__image">
diff --git a/wp-includes/version.php b/wp-includes/version.php
index c019805e7a..f50d4c9f55 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -16,7 +16,7 @@
  *
  * @global string $wp_version
  */
-$wp_version = '7.0-alpha-61257';
+$wp_version = '7.0-alpha-61258';

 /**
  * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.