diff --git a/src/wp-includes/load.php b/src/wp-includes/load.php index ec59459f80..44b4ed255f 100644 --- a/src/wp-includes/load.php +++ b/src/wp-includes/load.php @@ -300,8 +300,9 @@ function wp_debug_mode() { } else { error_reporting( E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR ); } - if ( defined( 'XMLRPC_REQUEST' ) ) + if ( defined( 'XMLRPC_REQUEST' ) || defined( 'REST_REQUEST' ) ) { ini_set( 'display_errors', 0 ); + } } /**