Wordpress by default displays the blog title followed by post name which is not good for search engines and social bookmarking websites since the title of the post is much more important than the blog name. To add insult to injury wordpress uses the character » as a separator which does not get encoded properly on social bookmarking sites and it looks quite ugly.
To fix it go to the theme editor in the wordpress admin, find the header php file and change the title to the following:
<title><?php if ( is_home() ) { ?><?php
bloginfo(’name’); ?> | <?php bloginfo(’description’);
?><?php } else { wp_title(â€); ?> | <?php bloginfo(’name’);
} ?></title>

