How to change the page title of "categories" pages?

Discussion in 'WordPress' started by jahangir, Mar 21, 2011.

  1. #1
    jahangir, Mar 21, 2011 IP
  2. PromoDirect

    PromoDirect Member

    Messages:
    267
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    28
    #2
    Are you using the SEO plugin for Wordpress? I believe it has options where you can change your category Title?
     
    PromoDirect, Mar 21, 2011 IP
  3. jahangir

    jahangir Peon

    Messages:
    633
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Yes, I am using SEO plugin for wordpress by Yoast.

    It has option but I don't understand what to place in the category field to remove the text "Category Archives" text.

    Have you used this plugin?
     
    jahangir, Mar 21, 2011 IP
  4. seojig

    seojig Well-Known Member Affiliate Manager

    Messages:
    1,122
    Likes Received:
    93
    Best Answers:
    0
    Trophy Points:
    140
    #4
    Use all in one seo pack plugin and click on setting once you have installed it...you will find different variation in category titles over there...hope it will work !!
     
    seojig, Mar 21, 2011 IP
  5. jahangir

    jahangir Peon

    Messages:
    633
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #5
    No, I want to use this SEO plugin by Yoast, it has more useful options than All In One SEO.
     
    jahangir, Mar 21, 2011 IP
  6. sinn3r_x

    sinn3r_x Member

    Messages:
    17
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    26
    #6
    If you are using wordpress search for a plugin.. All In One SEO is also good but are others better ..
     
    sinn3r_x, Mar 21, 2011 IP
  7. Abhik

    Abhik ..:: The ONE ::..

    Messages:
    11,337
    Likes Received:
    606
    Best Answers:
    0
    Trophy Points:
    410
    Digital Goods:
    2
    #7
    Your wordpress theme should have a file called "category.php"
    Open it in a text editor (like wordpad or notepad) and look for the <title></title> tag.
    Remove the text "Category Archives:" within it, save and reupload the file overwriting the existing one.

    Hope that helps
     
    Abhik, Mar 21, 2011 IP
  8. extremike

    extremike Peon

    Messages:
    44
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Digitech is correct, however as most Wordpress themes have a separate header.php file it is not always possible to change the category title tag in this way. If your theme has a separate header.php file, open it and add this code:

    <title>
    <?php if (is_category()) : ?>
    <?php wp_title(); ?>
    <?php endif; ?>
    </title>
    Code (markup):
    This will just put the raw category title in the title tag.

    Hope this helps
     
    extremike, Mar 22, 2011 IP
  9. lokers

    lokers Peon

    Messages:
    53
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #9
    I think that's the best way of doing it, I would do it like that too..
     
    lokers, Mar 22, 2011 IP