Site logo

Archived topic

Alternative logotype on specific parts of the site

1 reply · Started by Klara on February 17, 2023

Viewing posts 1–2 of 2

Hi!
I'm making a dual-language site, and I want the logotype image to change for the english-version page.
So for https://www.mammamu.se/ - regular logotype and all pages under: https://www.mammamu.se/en/ - alternative logotype. Is it possible to change the logotype with code for pages in a sub-folder like this?

Hi there,

try this PHP Snippet:

add_filter( 'generate_logo', function( $logo ) {
    $locale = $_SERVER['REQUEST_URI'];
    if ( strpos( $locale, '/en/') !== false ) { 
        return 'URL TO ENGLISH LOGO';
    }

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