'; if ( !empty( $online_shop_header_image_link)) { $target = ""; if( 1 == $online_shop_header_image_link_new_tab ){ $target = 'target = _blank'; } $output .= ''; } $output .= $html; if ( !empty( $online_shop_header_image_link)) { $output .= ' '; } $output .= ""; return $output; } add_filter( 'get_header_image_tag', 'online_shop_header_image_markup', 99, 3 ); if ( ! function_exists( 'online_shop_header_markup' ) ) : function online_shop_header_markup() { if ( function_exists( 'the_custom_header_markup' ) ) { the_custom_header_markup(); } else { $header_image = get_header_image(); if( ! empty( $header_image ) ) { $online_shop_customizer_all_values = online_shop_get_theme_options(); $online_shop_header_image_link = $online_shop_customizer_all_values['online-shop-header-image-link']; $online_shop_header_image_link_new_tab = $online_shop_customizer_all_values['online-shop-header-image-link-new-tab']; echo '
'; if ( !empty( $online_shop_header_image_link)) { $target = ""; if( 1 == $online_shop_header_image_link_new_tab ){ $target = "target = _blank"; } ?> href="" title="" rel="home"> <?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?> "; } } } endif;