2000, 'height' => 400, 'flex-height' => true, 'header-text' => true, 'video' => true, 'header-text' => false, ) ); } add_action( 'after_setup_theme', 'fitclub_custom_header_setup' ); // Filter the get_header_image_tag() for option of adding the link back to home page option function fitclub_header_image_markup( $html, $header, $attr ) { $output = ''; if ( ( get_theme_mod( 'fitclub_slider_activation', '' ) == 0 ) || ( ( get_theme_mod( 'fitclub_slider_activation', '' ) == 1 ) && ! is_front_page() ) ) { $header_image = get_header_image(); if( ! empty( $header_image ) ) { $output .= '
' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '
'; } } return $output; } function fitclub_header_image_markup_filter() { add_filter( 'get_header_image_tag', 'fitclub_header_image_markup', 10, 3 ); } add_action( 'fitclub_header_image_markup_render','fitclub_header_image_markup_filter' );