From 7b69275632e9374d423ff375075e31bb17936a2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Helen=20Hou-Sand=C3=AD?= Date: Thu, 1 Dec 2016 00:12:34 +0000 Subject: [PATCH] Twenty Seventeen: Make sure header text color is applied when color schemes are active. Props laurelfulford, ocean90. Merges [39397] to the 4.7 branch. Fixes #38980 for 4.7. Built from https://develop.svn.wordpress.org/branches/4.7@39398 git-svn-id: http://core.svn.wordpress.org/branches/4.7@39338 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- .../themes/twentyseventeen/inc/custom-header.php | 12 ++++++++++-- wp-includes/version.php | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/wp-content/themes/twentyseventeen/inc/custom-header.php b/wp-content/themes/twentyseventeen/inc/custom-header.php index e8e4b71ac9..50294b83fc 100644 --- a/wp-content/themes/twentyseventeen/inc/custom-header.php +++ b/wp-content/themes/twentyseventeen/inc/custom-header.php @@ -84,9 +84,17 @@ function twentyseventeen_header_style() { else : ?> .site-title a, - body.has-header-image .site-title a, + .colors-dark .site-title a, + .colors-custom .site-title a, + body.has-header-image .site-title a, + body.has-header-image.colors-dark .site-title a, + body.has-header-image.colors-custom .site-title a, .site-description, - body.has-header-image .site-description { + .colors-dark .site-description, + .colors-custom .site-description, + body.has-header-image .site-description, + body.has-header-image.colors-dark .site-description, + body.has-header-image.colors-custom .site-description { color: #; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 2668b3ea79..b70c5f5710 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-RC1-39395'; +$wp_version = '4.7-RC1-39398'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.