Forums

[resolved] Sidebar- Multiple Category menus (3 posts)

  1. toneburst
    Member
    Posted 1 month ago #

    Anyone know if it's possible to create a sidebar menu something like this:

    Pages
        About
        Home
    Work By Category 1
        Category 1
        Category 2
        Category 3
    Work By Category 2
        Category 4
        Category 5
        Category 6
    Links

    I don't want to use sub-categories, I just want to split-up the display of categories into two separate top-level menus.

    a|x

  2. esmi
    Member
    Posted 1 month ago #

    <ul>
    <?php
    wp_list_pages();
    wp_list_categories('include=1');
    wp_list_categories('include=2'); ?> ?>
    </ul>

    http://codex.wordpress.org/Template_Tags/wp_list_pages
    http://codex.wordpress.org/Template_Tags/wp_list_categories

  3. toneburst
    Member
    Posted 1 month ago #

    Thanks for the quick reply esmi. I will give that a go!

    a|x

Reply

You must log in to post.

About this Topic