> <?php if ( function_exists('is_tag') && is_tag() ) { single_tag_title( __('Tag Archive for "') ); echo '" - '; } elseif (is_archive()) { wp_title(''); _e(' Archive - '); } elseif (is_search()) { _e('Search for "'); echo esc_html($s) . '" - '; } elseif (!(is_404()) && (is_single()) || (is_page())) { wp_title(''); echo ' - '; } elseif (is_404()) { _e('Not found - '); } if (is_home()) { bloginfo('name'); echo ' - '; bloginfo('description'); } else { bloginfo('name'); } if ($paged > 1) { _e(' - page '); echo $paged; } ?> >