Problem with wordpress seo

Discussion in 'Search Engine Optimization' started by dvd436, Nov 30, 2008.

  1. #1
    I am using platinum seo plugin for wordpress and when I select my specific post title the title i select come up but it also adds the title of my hompage which is specified in settings on the dashboard.

    Can I stop this happening?

    Dave
     
    dvd436, Nov 30, 2008 IP
  2. calvynlee

    calvynlee Well-Known Member

    Messages:
    337
    Likes Received:
    4
    Best Answers:
    1
    Trophy Points:
    118
    #2
    yeah... your blog title will follow by the topic title you put, for example, I am using All in 1 seo,

    my latest topic it shows : Who Hosted Same Server with Me | IT Engineer's Blog

    Topic Come 1st, the follow by blog name
     
    calvynlee, Nov 30, 2008 IP
  3. Dan Schulz

    Dan Schulz Peon

    Messages:
    6,032
    Likes Received:
    437
    Best Answers:
    0
    Trophy Points:
    0
    #3
    You can. You'll have to use a conditional tag inside your Theme's header.php file to do it, but if all you want is the document title, the following should work:

    
    <?php if(is_single()) {
    	bloginfo('name');
    }
    ?>
    
    PHP:
     
    Dan Schulz, Nov 30, 2008 IP