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:
parent
d2b62a76ea
commit
d34d91d952
|
@ -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 ) );
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue