In my header.php I do not find either the right or wrong title. I find this:
<title><?php if (is_home () ) { bloginfo(‘name’); } elseif ( is_category() ) { single_cat_title(); echo ‘ – ‘ ; bloginfo(‘name’); }
elseif (is_single() ) { single_post_title(); }
elseif (is_page() ) { bloginfo(‘name’); echo ‘: ‘; single_post_title(); }
else { wp_title(”,true); } ?></title>
Is it pulling the title from somewhere else?