Site logo

Archived topic

generate_logo filter on mobile

4 replies · Started by Ronny on October 7, 2019

Viewing posts 1–5 of 5

Hi guy's,

I'm using the generate_logo filter to change the logo on a specific category.

This works like a charm on desktop but does not seem to work on mobile/tablet. Any ideas?

The code i'm using:
add_filter( 'generate_logo','tu_category_logo' );
function tu_category_logo( $logo )
{
if ( is_category('slug') || in_category('slug') ) {
return 'url to logo';
}
return $logo;
}

Thanks David!

I will close the topic.

You're welcome

This archived topic is closed to new replies.