Site logo

Archived topic

Animated CSS Logo

3 replies · Started by Simon on October 30, 2020

Viewing posts 1–4 of 4

Hi there,

You could try this:

add_filter( 'generate_mobile_header_logo_output', function( $output ) {
    return sprintf(
        '<div class="site-logo mobile-header-logo">
            <a href="%1$s" title="%2$s" rel="home">
                YOUR LOGO HTML HERE
            </a>
        </div>',
        esc_url( apply_filters( 'generate_logo_href', home_url( '/' ) ) ),
        esc_attr( apply_filters( 'generate_logo_title', get_bloginfo( 'name', 'display' ) ) )
    );
} );

Let me know :)

Perfect, thank you!

You're welcome :)

This archived topic is closed to new replies.