Right now the title of a post page on my blog reads like this… Blog Name >> Blog Archive >> Post Title
I don’t see the need for “Blog Archive” to be in there and would like to remove it. I’ve looked in single.php and style.css and I’m not seeing any reference to “Blog Archive” in there that I can remove.
Any suggestions?
Much appreciated.
Eddie
I just realized that you’re talking about the browser “title” at the top; that wasn’t clear from your original post
Go into your
header.php
and at the top look for this line<title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?> - <?php bloginfo('description'); ?> </title>
and remove
<?php if ( is_single() ) { ?> » Blog Archive <?php } ?>