Site logo

Archived topic

Changing website logo for specific category

7 replies · Started by William on June 20, 2021

Viewing posts 1–8 of 8

Hi there,

Is it possible to change the logo that appears for the website to another image for just posts in a specific category?

Kind regards,

Will

That's great thanks!

No problem :)

Hi there,

I am trying to change the logo for this category. I have this code but it is not working - can you advise where there is an issue?

add_filter( 'generate_haiku_logo', function( $logo ) {
      // Return our category logo URL
    if ( is_category('haiku') ) {
        return 'https://poemanalysis.com/wp-content/uploads/2021/07/Haiku-Analysis-Logo.jpg';
    }

    // Otherwise, return our default logo
    return $logo; 
 } );

Kind regards,

Will

generate_haiku_logo is not a valid filter name.

It needs to match what the documentation shows.

Ah yes, sorry about that - thanks!

No problem :)

This archived topic is closed to new replies.