Site logo

[Resolved] icons to the left and right of the site title

Home Forums Support [Resolved] icons to the left and right of the site title

Home Forums Support icons to the left and right of the site title

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1289687
    Pete

    I’m trying to work out a way with the current gp hooks to place a font awesome icon to the left and right of the main site title. Thanks.

    #1289987
    David
    Staff
    Customer Support

    Hi there,

    you can use this Filter hook:

    https://docs.generatepress.com/article/generate_site_title_output/

    This will output the default HTML with a FA star icon either side of the title text:

    add_filter( 'generate_site_title_output', function( $output ) {
    	return sprintf(
    	'<%1$s class="main-title" itemprop="headline">
            <a href="%2$s" rel="home">
                <i class="fas fa-star"></i> %3$s <i class="fas fa-star"></i>
            </a>
            </%1$s>',
            ( is_front_page() && is_home() ) ? 'h1' : 'p',
            esc_url( apply_filters( 'generate_site_title_href', home_url( '/' ) ) ),
            get_bloginfo( 'name' )
    	);
    });
    #1290027
    Pete

    Awesome thanks

    #1290038
    David
    Staff
    Customer Support

    You’re welcome

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.