From d2b385b7b82c092d564cae6d07e1e456c014e558 Mon Sep 17 00:00:00 2001 From: Jorge Costa Date: Thu, 17 Feb 2022 13:46:27 +0000 Subject: [PATCH] Global Styles: Fix PHP warning in WP_REST_Global_Styles_Controller if no styles exist. There is a PHP warning in WP_REST_Global_Styles_Controller because we are assuming that every theme.json has styles property, which is not always the case. Props ntsekouras. Fixes #54900. git-svn-id: https://develop.svn.wordpress.org/trunk@52750 602fd350-edb4-49c9-b593-d223f7449a82 --- .../endpoints/class-wp-rest-global-styles-controller.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php b/src/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php index d9ff86e1fa..e6771ff851 100644 --- a/src/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php +++ b/src/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php @@ -563,7 +563,10 @@ class WP_REST_Global_Styles_Controller extends WP_REST_Controller { } if ( rest_is_field_included( 'styles', $fields ) ) { - $data['styles'] = $theme->get_raw_data()['styles']; + $raw_data = $theme->get_raw_data(); + if ( isset( $raw_data['styles'] ) ) { + $data['styles'] = $raw_data['styles']; + } } $context = ! empty( $request['context'] ) ? $request['context'] : 'view';