Wordpress Categories

Discussion in 'WordPress' started by add_cents, Dec 16, 2007.

  1. #1
    Do you guys actually fill in the description for the Wordpress categories on your blog?

    Are there SEO advantages to filling them in?
     
    add_cents, Dec 16, 2007 IP
  2. CypherHackz

    CypherHackz Well-Known Member

    Messages:
    447
    Likes Received:
    24
    Best Answers:
    0
    Trophy Points:
    155
    #2
    nope. i dont think it will improve your seo if we put the description.

    -cypher.
     
    CypherHackz, Dec 17, 2007 IP
  3. Minterest

    Minterest Well-Known Member

    Messages:
    2,694
    Likes Received:
    39
    Best Answers:
    0
    Trophy Points:
    180
    #3
    I think if we add those desc. then it appears on mouse over...... maybe it helps in some way..........
     
    Minterest, Dec 17, 2007 IP
  4. waynelyp90

    waynelyp90 Banned

    Messages:
    458
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #4
    When you type in the description, it will be showed in the title="" tags. This helps you describe where the links lead to. It won't help much but it will help. ;)
     
    waynelyp90, Dec 17, 2007 IP
  5. add_cents

    add_cents Peon

    Messages:
    961
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Got another question for you guys then.

    Is it better to have a small amount of categories or large amount of categories?
     
    add_cents, Dec 18, 2007 IP
  6. CypherHackz

    CypherHackz Well-Known Member

    Messages:
    447
    Likes Received:
    24
    Best Answers:
    0
    Trophy Points:
    155
    #6
    make less parent categories and put more child categories under them. that is what i did for my websites.

    -cypher.
     
    CypherHackz, Dec 18, 2007 IP
  7. amitpatel_3001

    amitpatel_3001 Results Follow Patience

    Messages:
    14,074
    Likes Received:
    1,178
    Best Answers:
    0
    Trophy Points:
    430
    #7
    Its good if your categories also start ranking, you need to have unique descriptions for all your wordpress categories.
     
    amitpatel_3001, Dec 18, 2007 IP
  8. bochgoch

    bochgoch Peon

    Messages:
    1,918
    Likes Received:
    67
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Try to keep to as few categories as you can - keep things tight and well classified. Also be aware that not all plugins cope with multiple categories per post.
     
    bochgoch, Dec 18, 2007 IP
  9. rizamu

    rizamu Well-Known Member

    Messages:
    156
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    133
    #9
    it wont help too much ......... jst visible when ever mouse roll over it
     
    rizamu, Dec 19, 2007 IP
  10. brightboy

    brightboy Peon

    Messages:
    23
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #10
    en,it's just what i had done.
     
    brightboy, Apr 19, 2008 IP
  11. Lastbutnotleast

    Lastbutnotleast Peon

    Messages:
    2,612
    Likes Received:
    105
    Best Answers:
    0
    Trophy Points:
    0
    #11
    Parent categories? Child categories?
     
    Lastbutnotleast, Apr 19, 2008 IP
  12. Steupz

    Steupz Peon

    Messages:
    917
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    0
    #12
    I've seen it on a few sites but haven't the foggiest how it's done
     
    Steupz, Apr 19, 2008 IP
  13. Lastbutnotleast

    Lastbutnotleast Peon

    Messages:
    2,612
    Likes Received:
    105
    Best Answers:
    0
    Trophy Points:
    0
    #13
    What is it? Any example? Any link?
     
    Lastbutnotleast, Apr 19, 2008 IP
  14. pipes

    pipes Prominent Member

    Messages:
    12,766
    Likes Received:
    958
    Best Answers:
    0
    Trophy Points:
    360
    #14
    Do you think it would be useful to people using text reader browsers or whatever they are called? for the partially sighted, maybe the text is picked up by those browsers and read back?

    Does anyone know? if so thats a good thing, catering to disabled visitors.
     
    pipes, May 26, 2008 IP
  15. pipes

    pipes Prominent Member

    Messages:
    12,766
    Likes Received:
    958
    Best Answers:
    0
    Trophy Points:
    360
    #15
    How do you stop child categories from displaying with the parent categories within the sidebar?
     
    pipes, Jun 25, 2008 IP
  16. Pixelrage

    Pixelrage Peon

    Messages:
    5,083
    Likes Received:
    128
    Best Answers:
    0
    Trophy Points:
    0
    #16
    you should be able to list the category ID#'s within the statement that displays categories, like this:

    <ul>
    <?php
    wp_list_categories('orderby=name&include=1,2,3,5'); ?>
    </ul>
    Code (markup):
    ^^^ This one only displays category links that have IDs of 1, 2, 3 or 5, sorted by alpha. order

    <ul>
    <?php
    wp_list_categories('orderby=name&show_count=1&exclude=1'); ?>
    </ul>
    Code (markup):
    ^^^ This one displays all categories except the one with ID #1, sorted by alpha order

    To see a category's ID number, just go into your admin panel, and on the "Category" page, hover your mouse over the category's link and you can see the ID number in the URL.
     
    Pixelrage, Jun 25, 2008 IP
  17. pipes

    pipes Prominent Member

    Messages:
    12,766
    Likes Received:
    958
    Best Answers:
    0
    Trophy Points:
    360
    #17
    Hi markn26, thanks for the code, would either of those result in a tree like category structure, like when you click on a parent category within the sidebar you then see the child categories for that parent category?

    Thats the problem i currently have, where i have a child category with a post in it but it isn't found after clicking the parent category, its showing like the parent categories do, even though its a child category.
     
    pipes, Jun 25, 2008 IP