[Resolved] H1 for homepage logo

Home Forums Support [Resolved] H1 for homepage logo

Home Forums Support H1 for homepage logo

Viewing 3 posts - 16 through 18 (of 18 total)
  • Author
    Posts
  • #2321521
    David
    Staff
    Customer Support

    Try adding this PHP Snippet:

    add_filter( 'generate_site_title_output', function(){
        return sprintf(
            '<%1$s class="main-title"%4$s>
                <a href="%2$s" rel="home">
                    %3$s
                </a>
            </%1$s>',
            ( is_front_page() ) ? 'h1' : 'p',
            esc_url( apply_filters( 'generate_site_title_href', home_url( '/' ) ) ),
            get_bloginfo( 'name' ),
            'microdata' === generate_get_schema_type() ? ' itemprop="headline"' : ''
        );
    } );
    #2322708
    Ted

    Many thanks!

    #2323286
    David
    Staff
    Customer Support

    You’re welcome!

Viewing 3 posts - 16 through 18 (of 18 total)
  • You must be logged in to reply to this topic.