Viewing 2 replies - 1 through 2 (of 2 total)
  • You need to go to this file;
    wp-content/themes/(your theme folder)/header.php

    Find this;
    <title><?php (a bunch of random code) ?></title>

    To this;

    <title><?php
    	if(is_home() || is_front_page()) {
    		echo bloginfo("name") . " | " . bloginfo("description");
    	} else {
    		echo wp_title('', true, 'right');
    	}
    	?></title>

    Once you do that, you will need to force a refresh, you can clear your browser cache. Or you can press ctrl + F5 in most browsers to force a refresh. (Additionally if you are using a cache plugin, you will need to go in, and force the plugin to recreate the cache.)

    He had to change wp_title() code to make title changes possible with this plugin.

    Also, it would be helpful if you gave your website? 🙂

    Thread Starter nonname

    (@bipies)

    hi!

    Thanks, working perfectly!!!!

    The original code of tittle div was:

    <title><?php bloginfo(‘name’); ?><?php wp_title(); ?></title>

    Replacing it, now works fine, really thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: WordPress SEO by Yoast] titles are not showing the correct title,,,, again….’ is closed to new replies.