From 9dfc9375dae31fa5c79b7441080820eaed3d32ef Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 20 Dec 2022 13:57:15 +0000 Subject: [PATCH] Themes: Alphabetize the properties list in `WP_Theme_JSON::VALID_STYLES` for consistency. Follow-up to [53129], [54253], [55008]. See #57354. Built from https://develop.svn.wordpress.org/trunk@55009 git-svn-id: http://core.svn.wordpress.org/trunk@54542 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-theme-json.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/class-wp-theme-json.php b/wp-includes/class-wp-theme-json.php index c1bb6dd0f9..f9e8e371c5 100644 --- a/wp-includes/class-wp-theme-json.php +++ b/wp-includes/class-wp-theme-json.php @@ -280,8 +280,8 @@ class WP_Theme_JSON { 'settings', 'styles', 'templateParts', - 'version', 'title', + 'version', ); /** @@ -381,13 +381,13 @@ class WP_Theme_JSON { 'filter' => array( 'duotone' => null, ), - 'shadow' => null, 'outline' => array( 'color' => null, 'offset' => null, 'style' => null, 'width' => null, ), + 'shadow' => null, 'spacing' => array( 'margin' => null, 'padding' => null, diff --git a/wp-includes/version.php b/wp-includes/version.php index d156914f08..22cc8fc6a4 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2-alpha-55008'; +$wp_version = '6.2-alpha-55009'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.