[wp-trac] [WordPress Trac] #63941: About Page - 6.9

WordPress Trac noreply at wordpress.org
Tue Nov 18 02:20:06 UTC 2025


#63941: About Page - 6.9
------------------------------------------------+--------------------------
 Reporter:  davidbaumwald                       |       Owner:  (none)
     Type:  task (blessed)                      |      Status:  new
 Priority:  normal                              |   Milestone:  6.9
Component:  Help/About                          |     Version:
 Severity:  normal                              |  Resolution:
 Keywords:  i18n-change has-patch dev-feedback  |     Focuses:
                                                |  accessibility
------------------------------------------------+--------------------------

Comment (by wildworks):

 Regarding [https://github.com/WordPress/wordpress-
 develop/blob/496df56a416eba0c9cb7f5a91007c926dcd29dd1/src/wp-
 admin/about.php#L141 this line], there seem to be some concerns about
 accessibility when using the title attribute on the `abbr` element. See:
 #46980

 I think either of the following would probably be better:


 {{{
 <p><?php
 printf(
         /* translators: %s: LCP abbreviation. */
         __( 'WordPress 6.9 includes a broad set of performance
 enhancements. A better %s (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.' ),
         '<abbr>LCP</abbr>'
 );
 ?></p>
 }}}

 or:

 {{{
 <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>
 }}}

-- 
Ticket URL: <https://core.trac.wordpress.org/ticket/63941#comment:51>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform


More information about the wp-trac mailing list