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
This commit is contained in:
allancole 2018-12-15 11:06:52 +00:00
parent d2b62a76ea
commit d34d91d952
2 changed files with 2 additions and 2 deletions

View File

@ -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 ) );
}
/**

View File

@ -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.