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.
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>
I normally use WP SEO by Yoast, but here’s a troubleshoot:
wp_title('');
(this is a WPSEO requirement)functions.php
for a similar hook, and disable if found:add_filter( 'wp_title', 'twentyten_filter_wp_title', 10, 2 );
Either use
wp_title()
only, or add this line to your theme’s functions.php file:remove_all_filters('wp_title');