Lines:
1 to 26 of 26
<?php /** * Implement Custom Header functionality for Twenty Fourteen * * @package WordPress * @subpackage Twenty_Fourteen * @since Twenty Fourteen 1.0 */ /* function twentyfourteen_custom_header_setup() – Set up the WordPress core custom header settings. */ add_action( 'after_setup_theme', 'twentyfourteen_custom_header_setup' ); if ( ! function_exists( 'twentyfourteen_header_style' ) ) : /* function twentyfourteen_header_style() – Styles the header image and text displayed on the blog */ endif; // twentyfourteen_header_style() if ( ! function_exists( 'twentyfourteen_admin_header_style' ) ) : /* function twentyfourteen_admin_header_style() – Style the header image displayed on the Appearance > Header screen. */ endif; // twentyfourteen_admin_header_style() if ( ! function_exists( 'twentyfourteen_admin_header_image' ) ) : /* function twentyfourteen_admin_header_image() – Create the custom header image markup displayed on the Appearance > Header screen. */ endif; // twentyfourteen_admin_header_image()