'; /* Get the site title. If it's not empty, wrap it with the appropriate HTML. */ if ( $title = get_bloginfo( 'name' ) ) { if ( function_exists( 'the_custom_logo' ) && get_custom_logo() ) { $title = sprintf( '
', home_url(), esc_attr( $title )); } else { if (is_home()) { $title = sprintf( '

%3$s

', home_url(), esc_attr( $title ), $title ); } else { $title = sprintf( '
%3$s
', home_url(), esc_attr( $title ), $title ); } } } /* Display the site title and apply filters for developers to overwrite. */ echo hit_apply_atomic( 'site_title', $title ); echo ''; ?>