> <?php if(is_home()) { echo bloginfo('name').' - Home'; } elseif(is_category()) { echo 'Browsing the Category '; wp_title(' ', true, ''); } elseif(is_archive()){ echo 'Browsing Archives of'; wp_title(' ', true, ''); } elseif(is_search()) { echo 'Search Results for "'.$s.'"'; } elseif(is_404()) { echo '404 - Page got lost!'; }elseif(is_page('47')) { echo 'U can contact on this'; } else { bloginfo('name'); wp_title('-', true, ''); } ?> >

BusiProf