diff -r 48c4eec2b7e6 -r 8c2e4d02f4ef wp/wp-includes/blocks/site-title.php --- a/wp/wp-includes/blocks/site-title.php Fri Sep 05 18:40:08 2025 +0200 +++ b/wp/wp-includes/blocks/site-title.php Fri Sep 05 18:52:52 2025 +0200 @@ -31,7 +31,7 @@ } if ( $attributes['isLink'] ) { - $aria_current = is_home() || ( is_front_page() && 'page' === get_option( 'show_on_front' ) ) ? ' aria-current="page"' : ''; + $aria_current = ! is_paged() && ( is_front_page() || is_home() && ( (int) get_option( 'page_for_posts' ) !== get_queried_object_id() ) ) ? ' aria-current="page"' : ''; $link_target = ! empty( $attributes['linkTarget'] ) ? $attributes['linkTarget'] : '_self'; $site_title = sprintf(