<title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title> PHP: If I never want "Blog Archive" to be shown, what part of the script do I remove? Just the words 'Blog Archive', or more then that?
For example, I want: Smooth Entrepreneur >> Blog Archive >> ARTICLE TITLE to be: Smooth Entrepreneur >> ARTICLE TITLE
I think your line needs to be replaced with this one: <title><?php bloginfo('name'); ?> <?php wp_title(); ?></title> PHP: