diff -r 48c4eec2b7e6 -r 8c2e4d02f4ef wp/wp-admin/options-general.php --- a/wp/wp-admin/options-general.php Fri Sep 05 18:40:08 2025 +0200 +++ b/wp/wp-admin/options-general.php Fri Sep 05 18:52:52 2025 +0200 @@ -124,9 +124,11 @@ $app_icon_alt_value = ''; $browser_icon_alt_value = ''; + $site_icon_url = get_site_icon_url(); + if ( $site_icon_id ) { $img_alt = get_post_meta( $site_icon_id, '_wp_attachment_image_alt', true ); - $filename = wp_basename( get_site_icon_url() ); + $filename = wp_basename( $site_icon_url ); $app_icon_alt_value = sprintf( /* translators: %s: The selected image filename. */ __( 'App icon preview: The current image has no alternative text. The file name is: %s' ), @@ -155,23 +157,33 @@ } ?> + -
-
- -
- <?php echo esc_attr( $browser_icon_alt_value ); ?> +
+
+ <?php echo esc_attr( $app_icon_alt_value ); ?> +
+ +
+ <?php echo esc_attr( $browser_icon_alt_value ); ?> + + +
+
-
- <?php echo esc_attr( $app_icon_alt_value ); ?>
-
+
@@ -198,8 +210,12 @@

512 × 512' ); + printf( + /* translators: 1: pixel value for icon size. 2: pixel value for icon size. */ + __( 'The Site Icon is what you see in browser tabs, bookmark bars, and within the WordPress mobile apps. It should be square and at least %1$s by %2$s pixels.' ), + 512, + 512 + ); ?>

@@ -459,11 +475,12 @@ * Filters the default date formats. * * @since 2.7.0 - * @since 4.0.0 Added ISO date standard YYYY-MM-DD format. + * @since 4.0.0 Replaced the `Y/m/d` format with `Y-m-d` (ISO date standard YYYY-MM-DD). + * @since 6.8.0 Added the `d.m.Y` format. * * @param string[] $default_date_formats Array of default date formats. */ - $date_formats = array_unique( apply_filters( 'date_formats', array( __( 'F j, Y' ), 'Y-m-d', 'm/d/Y', 'd/m/Y' ) ) ); + $date_formats = array_unique( apply_filters( 'date_formats', array( __( 'F j, Y' ), 'Y-m-d', 'm/d/Y', 'd/m/Y', 'd.m.Y' ) ) ); $custom = true;