wordpress 2 category-lists, possible?

Discussion in 'WordPress' started by Huo_Yang, Apr 28, 2008.

  1. #1
    hi,

    i have an anime-streaming wordpress blog, and i wonder how i can make 2 sepperate category-lists?
    1. 'anime series'
    2. 'anime movies'


    is there an easy to use plugin or something?
     
    Huo_Yang, Apr 28, 2008 IP
  2. godsofchaos

    godsofchaos Peon

    Messages:
    2,595
    Likes Received:
    124
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Create Two categories from the categories menu, why would you need a plugin to assign a category? :eek:
     
    godsofchaos, Apr 28, 2008 IP
  3. Lastbutnotleast

    Lastbutnotleast Peon

    Messages:
    2,612
    Likes Received:
    105
    Best Answers:
    0
    Trophy Points:
    0
    #3
    2 categories + sub-categories
     
    Lastbutnotleast, Apr 28, 2008 IP
  4. mizaks

    mizaks Well-Known Member

    Messages:
    2,066
    Likes Received:
    126
    Best Answers:
    0
    Trophy Points:
    135
    #4
    for list one:

    <?php wp_list_categories('orderby=name&include=1'); ?>
    Code (markup):
    where '1' is the ID for the anime series category.

    For list two:

    <?php wp_list_categories('orderby=name&include=2'); ?>
    Code (markup):
    where '2' is the ID for the anime movies category. You can get the ID from Manage -> Categories in admin panel.
     
    mizaks, Apr 28, 2008 IP