Wordpress: Title Tag
<title>
<?php
if (function_exists('is_tag') && is_tag()) { echo 'Tag Archive for "'.$tag.'" - '; }
elseif (is_archive()) { wp_title(''); echo ' Archive - '; }
elseif (is_front_page()) { wp_title(''); }
elseif (is_search()) { echo 'Search for "'.wp_specialchars($s).'" - '; }
elseif (!(is_404()) && (is_single()) || (is_page())) { wp_title(''); echo ' - '; }
elseif (is_404()) { echo 'Not Found - '; } bloginfo('name');
?>
</title>