wp-content/themes/twentyfourteen/inc/custom-header.php:62Styles the header image and text displayed on the blog
function twentyfourteen_header_style() { $text_color = get_header_textcolor(); // If no custom color for text is set, let's bail. if ( display_header_text() && get_theme_support( 'custom-header', 'default-text-color' ) === $text_color ) { return; } // If we get this far, we have custom styles. ?> <style type="text/css" id="twentyfourteen-header-css"> <?php // Has the text been hidden? if ( ! display_header_text() ) : ?> .site-title, .site-description { clip-path: inset(50%); position: absolute; } <?php // If the user has set a custom color for the text, use that. elseif ( get_theme_support( 'custom-header', 'default-text-color' ) !== $text_color ) : ?> .site-title a { color: #<?php echo esc_attr( $text_color ); ?>; } <?php endif; ?> </style> <?php }Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
src/wp-content/themes/twentyfourteen/inc/custom-header.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.