Site logo

Archived topic

icons to the left and right of the site title

3 replies · Started by Pete on May 18, 2020

Viewing posts 1–4 of 4

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.

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' )
	);
});

Awesome thanks

You're welcome

This archived topic is closed to new replies.