From d34d91d952e77b7d45fc6c10e863bdf5c41abdd2 Mon Sep 17 00:00:00 2001 From: allancole Date: Sat, 15 Dec 2018 11:06:52 +0000 Subject: [PATCH] Updating Twenty Nineteen, the new default theme for 2019. This change properly sets the primary color hue theme option. - More info: https://github.com/WordPress/twentynineteen/pull/683 Props richtabor. See #45424. Built from https://develop.svn.wordpress.org/branches/5.0@44192 git-svn-id: http://core.svn.wordpress.org/branches/5.0@44022 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentynineteen/inc/color-patterns.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-content/themes/twentynineteen/inc/color-patterns.php b/wp-content/themes/twentynineteen/inc/color-patterns.php index 6e6004a328..be9b5efca9 100644 --- a/wp-content/themes/twentynineteen/inc/color-patterns.php +++ b/wp-content/themes/twentynineteen/inc/color-patterns.php @@ -14,7 +14,7 @@ function twentynineteen_custom_colors_css() { $primary_color = 199; if ( 'default' !== get_theme_mod( 'primary_color', 'default' ) ) { - $primary_color = absint( get_theme_mod( 'primary_color', 199 ) ); + $primary_color = absint( get_theme_mod( 'primary_color_hue', 199 ) ); } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index 82b06442bd..f1a25ce1d5 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0.2-alpha-44191'; +$wp_version = '5.0.2-alpha-44192'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.