Oops - my blog posts titles aren't displayed in the browser title bar
I didn't notice all these days that the browser didn't display the blog title or the post title in the title bar.
This single piece of code corrected it.
This is very quick and dirty fix.
Took about 1 min to do it.
<title> <?php if (is_single() ): ?> <?php wp_title(); ?> | <?php endif; ?> <?php bloginfo('name'); ?> - <?php bloginfo('description'); ?> </title>
