Not sure if this question go in Programming or Bloging! Please move the thread to the appropriate secition please. How to get the blog title to be page title in wordpress? www.discussre.com When I am on this page http://www.discussre.com/australian-mortgage-tips/ Iike to see Mortgage Tips as part of the title. Any help will get you a good back link or a Green Rep Thanks
Try this code in your header.php file: <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title> PHP: