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
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
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: