wp-content/themes/twentyeleven/functions.php:328Styles the header image and text displayed on the blog.
function twentyeleven_header_style() { $text_color = get_header_textcolor(); // If no custom options for text are set, let's bail. if ( HEADER_TEXTCOLOR === $text_color ) { return; } // If we get this far, we have custom styles. Let's do this. ?> <style type="text/css" id="twentyeleven-header-css"> <?php // Has the text been hidden? if ( 'blank' === $text_color ) : ?> #site-title, #site-description { position: absolute; clip: rect(1px 1px 1px 1px); /* IE6, IE7 */ clip: rect(1px, 1px, 1px, 1px); } <?php // If the user has set a custom color for the text, use that. else : ?> #site-title a, #site-description { color: #<?php echo $text_color; ?>; } <?php endif; ?> </style> <?php }Introduced in Twenty Eleven 1.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
src/wp-content/themes/twentyeleven/functions.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.