Currently every page on my blog has the same title. I would like every page to have it's own title, the same title as the article of that page. Is there a setting within wordpress or a plugin that manages this?
Of course there is, actually, is one of the most downloaded and important wordpress plugins ever created: All in One Seo Wordpress Plugin: http://wordpress.org/extend/plugins/all-in-one-seo-pack/ That link takes you to the last version available. You will see how your traffic increases after you implement this plugin.
Great plugin in. hey bloggingmaster we should combine forces and rule the world. or we should like a alien vs predator type of deal. bloggernoob vs bloggingmaster. or run a shoemoney vs johnchow rss competition. haha im such a dork.
If you don't wish to use the plugin, you can also go in your header.php file and change the code in the <title></title> tag. Something like this should do the job just fine: <title><?php if (is_home () ) { bloginfo('name'); echo " - "; bloginfo('description'); } else { wp_title('',true); echo " - "; bloginfo('name'); }?></title> Enjoy