Lines:
1 to 25 of 25
<?php /** * Custom Header functionality for Twenty Fifteen * * @package WordPress * @subpackage Twenty_Fifteen * @since Twenty Fifteen 1.0 */ /* function twentyfifteen_custom_header_setup() – Set up the WordPress core custom header feature. */ add_action( 'after_setup_theme', 'twentyfifteen_custom_header_setup' ); /* function twentyfifteen_hex2rgb() – Convert HEX to RGB. */ if ( ! function_exists( 'twentyfifteen_header_style' ) ) : /* function twentyfifteen_header_style() – Styles the header image and text displayed on the blog. */ endif; // twentyfifteen_header_style() /* function twentyfifteen_header_background_color_css() – Enqueues front-end CSS for the header background color. */ add_action( 'wp_enqueue_scripts', 'twentyfifteen_header_background_color_css', 11 ); /* function twentyfifteen_sidebar_text_color_css() – Enqueues front-end CSS for the sidebar text color. */ add_action( 'wp_enqueue_scripts', 'twentyfifteen_sidebar_text_color_css', 11 );