Is there a Wordpress plugin for this?

Discussion in 'WordPress' started by Gatorade, Oct 28, 2007.

  1. #1
    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?
     
    Gatorade, Oct 28, 2007 IP
  2. BloggingMaster

    BloggingMaster Peon

    Messages:
    139
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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.
     
    BloggingMaster, Oct 28, 2007 IP
    Gatorade likes this.
  3. Gatorade

    Gatorade Peon

    Messages:
    2,130
    Likes Received:
    222
    Best Answers:
    0
    Trophy Points:
    0
    #3
    I just downloaded it and am going to give it a try.

    Thanks.
     
    Gatorade, Oct 28, 2007 IP
  4. bloggernoob

    bloggernoob Peon

    Messages:
    456
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #4
    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.
     
    bloggernoob, Oct 29, 2007 IP
  5. sam79

    sam79 Peon

    Messages:
    97
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #5
    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 :)
     
    sam79, Oct 30, 2007 IP