Index: wp-content/themes/twentyfourteen/functions.php
===================================================================
--- wp-content/themes/twentyfourteen/functions.php	(revision 25139)
+++ wp-content/themes/twentyfourteen/functions.php	(working copy)
@@ -216,16 +216,6 @@
 add_action( 'wp_enqueue_scripts', 'twentyfourteen_scripts' );
 
 /**
- * Enqueue Google fonts style to admin screen for custom header display.
- *
- * @return void
- */
-function twentyfourteen_admin_fonts() {
-	wp_enqueue_style( 'twentyfourteen-lato' );
-}
-add_action( 'admin_print_scripts-appearance_page_custom-header', 'twentyfourteen_admin_fonts' );
-
-/**
  * Sets the post excerpt length to 40 words.
  *
  * @param int $length
@@ -453,12 +443,6 @@
 add_filter( 'wp_title', 'twentyfourteen_wp_title', 10, 2 );
 
 /**
- * Implement the Custom Header feature
- *
- */
-require get_template_directory() . '/inc/custom-header.php';
-
-/**
  * Custom template tags for this theme.
  */
 require get_template_directory() . '/inc/template-tags.php';
Index: wp-content/themes/twentyfourteen/header.php
===================================================================
--- wp-content/themes/twentyfourteen/header.php	(revision 25139)
+++ wp-content/themes/twentyfourteen/header.php	(working copy)
@@ -51,15 +51,6 @@
 <div id="page" class="hfeed site">
 	<?php do_action( 'before' ); ?>
 
-	<?php $header_image = get_header_image();
-	if ( ! empty( $header_image ) ) : ?>
-	<div id="site-header">
-		<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
-			<img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="" />
-		</a>
-	</div>
-	<?php endif; ?>
-
 	<header id="masthead" class="site-header" role="banner">
 		<div class="header-main clear">
 			<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
Index: wp-content/themes/twentyfourteen/inc/custom-header.php
===================================================================
--- wp-content/themes/twentyfourteen/inc/custom-header.php	(revision 25139)
+++ wp-content/themes/twentyfourteen/inc/custom-header.php	(working copy)
@@ -1,129 +0,0 @@
-<?php
-/**
- * @package WordPress
- * @subpackage Twenty_Fourteen
- */
-
-/**
- * Setup the WordPress core custom header feature.
- *
- * Use add_theme_support to register support for WordPress 3.4+
- * as well as provide backward compatibility for previous versions.
- * Use feature detection of wp_get_theme() which was introduced
- * in WordPress 3.4.
- *
- * @todo Rework this function to remove WordPress 3.4 support when WordPress 3.6 is released.
- *
- * @uses twentyfourteen_header_style()
- * @uses twentyfourteen_admin_header_style()
- * @uses twentyfourteen_admin_header_image()
- *
- * @package WordPress
- * @subpackage Twenty_Fourteen
- */
-function twentyfourteen_custom_header_setup() {
-	add_theme_support( 'custom-header', apply_filters( 'twentyfourteen_custom_header_args', array(
-		'default-text-color'     => 'fff',
-		'width'                  => 1260,
-		'height'                 => 240,
-		'flex-height'            => true,
-		'wp-head-callback'       => 'twentyfourteen_header_style',
-		'admin-head-callback'    => 'twentyfourteen_admin_header_style',
-		'admin-preview-callback' => 'twentyfourteen_admin_header_image',
-	) ) );
-
-}
-add_action( 'after_setup_theme', 'twentyfourteen_custom_header_setup' );
-
-if ( ! function_exists( 'twentyfourteen_header_style' ) ) :
-/**
- * Styles the header image and text displayed on the blog
- *
- * @see twentyfourteen_custom_header_setup().
- *
- */
-function twentyfourteen_header_style() {
-	$header_text_color = get_header_textcolor();
-
-	// If no custom options for text are set, let's bail
-	// $header_text_color options: HEADER_TEXTCOLOR is default, hide text (returns 'blank') or any hex value
-	if ( HEADER_TEXTCOLOR == $header_text_color )
-		return;
-	// If we get this far, we have custom styles. Let's do this.
-	?>
-	<style type="text/css">
-	<?php
-		// Has the text been hidden?
-		if ( 'blank' == $header_text_color ) :
-	?>
-		.site-title {
-			position: absolute !important;
-			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  {
-			color: #<?php echo $header_text_color; ?> !important;
-		}
-	<?php endif; ?>
-	</style>
-	<?php
-}
-endif; // twentyfourteen_header_style
-
-if ( ! function_exists( 'twentyfourteen_admin_header_style' ) ) :
-/**
- * Styles the header image displayed on the Appearance > Header admin panel.
- *
- * @see twentyfourteen_custom_header_setup().
- *
- */
-function twentyfourteen_admin_header_style() {
-?>
-	<style type="text/css">
-	.appearance_page_custom-header #headimg {
-		background-color: #000;
-		border: none;
-		max-width: 1230px;
-		min-height: 48px;
-	}
-	#headimg h1 {
-		font-family: lato, sans-serif;
-		font-size: 18px;
-		line-height: 1.3333333333;
-		margin: 12px 0 12px 27px;
-	}
-	#headimg h1 a {
-		color: #fff;
-		text-decoration: none;
-	}
-	#headimg img {
-		vertical-align: middle;
-	}
-	</style>
-<?php
-}
-endif; // twentyfourteen_admin_header_style
-
-if ( ! function_exists( 'twentyfourteen_admin_header_image' ) ) :
-/**
- * Custom header image markup displayed on the Appearance > Header admin panel.
- *
- * @see twentyfourteen_custom_header_setup().
- *
- */
-function twentyfourteen_admin_header_image() {
-	$header_image = get_header_image();
-?>
-	<div id="headimg">
-		<?php if ( ! empty( $header_image ) ) : ?>
-		<img src="<?php echo esc_url( $header_image ); ?>" alt="">
-		<?php endif; ?>
-		<h1 class="displaying-header-text"><a id="name"<?php echo sprintf( ' style="color:#%s;"', get_header_textcolor() ); ?> onclick="return false;" href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></h1>
-	</div>
-<?php
-}
-endif; // twentyfourteen_admin_header_image
Index: wp-content/themes/twentyfourteen/style.css
===================================================================
--- wp-content/themes/twentyfourteen/style.css	(revision 25139)
+++ wp-content/themes/twentyfourteen/style.css	(working copy)
@@ -1579,7 +1579,6 @@
 	max-width: 100%;
 	height: auto;
 }
-.site-header img,
 .attachment-featured-thumbnail-large,
 .entry-content img,
 .comment-content img,
