Im using wordpress 3.0 here:
http://www.adventure-service.com
On homepage i am using template that creates that content without wordpress loop.
But on contact page i am using the loop:
<?php get_header(); ?>
<div id='content'>
<?php get_template_part('loop'); ?>
</div>
<?php get_footer(); ?>
Ofc on contact page title works just fine.
Any idea what to do? What code to show you? In header.php i have this for title:
<title><?php wp_title( '| adventure-service.com', true, 'right' ); ?></title>
It’s nothing to do with the loop,
wp_titleis always null on the site front page. That is why the WordPress codex encourages you to include the blog name in your title. In your case you probably want do something like this (after setting your blog’s name to ‘adventure-service.com’):