Add blog name in posts title
I found in this post (
http://forums.appthemes.com/add-title-page-title-23136/ ) how to add the blog name in post Titles (like: Post name | Blog Name); When I add this code in header.php :
PHP Code:
<title><?php wp_title('|',true,'right'); ?><?php bloginfo('name'); ?></title>
is ok on pages/posts; the problem is on index. The title on index is like "Blog Name Blog Name". What I need to change? Thank you.