I am currently using the following title code for Wordpress 3.0.5 <?php if ( is_front_page()) { ?><title><?php bloginfo('name'); ?></title><?php } else { ?><title><?php wp_title (' | ',true,'right') . bloginfo('name'); ?></title><?php } ?> Code (markup): For my NON front page posts, I don't want the " | blog name " to show after the post title. What would I change this to in order to allow this? Thank you!
<?php if ( is_front_page()) { ?><title><?php bloginfo('name'); ?></title><?php } else { ?><title><?php wp_title (''); ?></title><?php } ?> PHP: For seo better SEO Title Tag plugin. But I dont know it works at 3.0.5 version.