How to remove duplicate blog title

My blog is www.theprinterdepo.com/blog.

The blog title its in the beginning and at the end, which looks bad for seo efforts, I have a pluggin called ALL In one SEO. Which puts the title of the blog at the end, which is fine.

Read More

But I cant find how to remove it from the start of the meta title.

thank you

I suppose this is the code you need:

<title><?php wp_title('|', true, 'left'); ?></title>

Related posts

Leave a Reply

2 comments

  1. I normally use WP SEO by Yoast, but here’s a troubleshoot:

    • what if you use only wp_title(''); (this is a WPSEO requirement)
    • what do you have as Home Title at the plugin’s settings page?
      enter image description here
    • search your theme’s functions.php for a similar hook, and disable if found:
      add_filter( 'wp_title', 'twentyten_filter_wp_title', 10, 2 );
    • dig into WordPress forums for similar issues: http://wordpress.org/search/all-in-one-seo-pack+wp_title?forums=1