HeadSpace2 double title on homepage

I started using HeadSpace2, a meta plugin for WordPress, and it works great so far. I even managed to get the Google description that I wanted with it.

Let’s call my website for “HomePage”, and the head title is “Funny Stuff”.
When people access the front page, it shows up as HomePage | HomePage | Funny Stuff.
If people click a link to a post, it says Funny Stuff | HomePage.

Read More

How do I fix so it only says HomePage | Funny Stuff and not HomePage | HomePage | Funny Stuff?

Related posts

Leave a Reply

1 comment

  1. In the theme’s header.php look for the <title> tag. You’ll probably find something like:

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

    The wp_title() function spits out the blog name now so you can just remove the bloginfo() bit.