Like this?
`<title><?php wp_title();
if ( is_single() )
_e('» Blog Archive');
bloginfo('name'); ?></title>`
or like this?
`<title><?php if ( is_single() )
_e('» Blog Archive');
wp_title();
bloginfo('name'); ?></title>`
And if I wanted simply a pipe | between the two, rather than Blog Archive, how would I accomplish that?
Thank you for your help!