• Hi all

    What I want to do is, place the link for contact, sitemap and about on top of the page and other menu items on the left hand side, as a vertical menu.

    The thing is, as I create the contact page and about page, they are also under the Pages and hence in the vertical menu on the left. How do I take these and place them on the top of the page as a separeate horizontal menu?

    Thanks 🙂

Viewing 2 replies - 1 through 2 (of 2 total)
  • to exclude them from the vertical menu, use the exclude parameter in wp_list_pages, and find their IDs on the manage pages screen. so for example
    <?php wp_list_pages('title_li=&exclude=1,2'); ?> where 1 and 2 are your IDs

    you can do the same for your other menu, but instead of listing loads of excludes, use include instead.

    make sure your css for the horizontal menu has the display:inline tag, otherwise it wont be horizontal!

    Thread Starter audioslave

    (@audioslave)

    Alright. Thanks, epicalex.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Custom Pages menu placement’ is closed to new replies.