Site logo

Archived topic

Add Favicon on Page Header Setting

3 replies · Started by elsa on February 10, 2018

Viewing posts 1–4 of 4

Hi,
I need different favicon for particular page so I want to add the code on header page setting. How to do that?

Hi there,

Not quite sure what you mean?

Page Headers are page specific so you can apply different page header to different pages?

Hi Leo,
I need to know how to assign favicon for each page. Thanks.

You would have to use a filter like this:

add_filter( 'option_site_icon', 'tu_custom_favicon' );
function tu_custom_favicon( $icon ) {
    if ( is_page( 'your-page-slug' ) ) {
        return 'URL TO CUSTOM FAVICON';
    }

    return $icon;
}
This archived topic is closed to new replies.