diff -r 48c4eec2b7e6 -r 8c2e4d02f4ef wp/wp-includes/class-wp-fatal-error-handler.php --- a/wp/wp-includes/class-wp-fatal-error-handler.php Fri Sep 05 18:40:08 2025 +0200 +++ b/wp/wp-includes/class-wp-fatal-error-handler.php Fri Sep 05 18:52:52 2025 +0200 @@ -190,7 +190,11 @@ if ( is_multisite() ) { $message = __( 'There has been a critical error on this website. Please reach out to your site administrator, and inform them of this error for further assistance.' ); } else { - $message = __( 'There has been a critical error on this website. Please check your site admin email inbox for instructions.' ); + $message = sprintf( + /* translators: %s: Support forums URL. */ + __( 'There has been a critical error on this website. Please check your site admin email inbox for instructions. If you continue to have problems, please try the support forums.' ), + __( 'https://wordpress.org/support/forums/' ) + ); } } else { $message = __( 'There has been a critical error on this website.' );