Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter ced64k

    (@ced64k)

    Temporaly fixed with this code

    function theme_name_wp_title( $title, $sep ) {
        if (strpos($title, 'Languages') !== FALSE)
            $title = '';
        return $title;
    }
    add_filter( 'wp_title', 'theme_name_wp_title', 10, 2 );

    Plugin Author Chouby

    (@chouby)

    Hi!

    That’s probably coming from a conflict. Normally Polylang hides the fact that the language is a taxonomy, but maybe your theme (I guess it comes from the theme) takes this information before Polylang acts.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Strange page title on index page’ is closed to new replies.