Lines:
1 to 22 of 22
<?php /** * Custom header implementation * * @link https://codex.wordpress.org/Custom_Headers * * @package WordPress * @subpackage Twenty_Seventeen * @since Twenty Seventeen 1.0 */ /* function twentyseventeen_custom_header_setup() – Set up the WordPress core custom header feature. */ add_action( 'after_setup_theme', 'twentyseventeen_custom_header_setup' ); if ( ! function_exists( 'twentyseventeen_header_style' ) ) : /* function twentyseventeen_header_style() – Styles the header image and text displayed on the blog. */ endif; // End of twentyseventeen_header_style(). /* function twentyseventeen_video_controls() – Customize video play/pause button in the custom header. */ add_filter( 'header_video_settings', 'twentyseventeen_video_controls' );