- Timestamp:
- 02/09/2020 04:52:28 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfourteen/inc/custom-header.php
r47122 r47219 64 64 65 65 // If no custom color for text is set, let's bail. 66 if ( display_header_text() && $text_color === get_theme_support( 'custom-header', 'default-text-color' )) {66 if ( display_header_text() && get_theme_support( 'custom-header', 'default-text-color' ) === $text_color ) { 67 67 return; 68 68 } … … 83 83 <?php 84 84 // If the user has set a custom color for the text, use that. 85 elseif ( $text_color != get_theme_support( 'custom-header', 'default-text-color' )) :85 elseif ( get_theme_support( 'custom-header', 'default-text-color' ) != $text_color ) : 86 86 ?> 87 87 .site-title a {
Note: See TracChangeset
for help on using the changeset viewer.