Anyone know how to remove page links from the menu? - Wordpress

4 replies
Hi guys,

I have a little problem here. Whenever I create a new page (examples:
about us, contact us etc..) on wordpress, a link to that page
gets created automatically and it'll show up in the menu below
the header.

I want to remove those links from there and put them in the
footer. But I'm finding it difficult to do so...

Can you help me out?

Thanks a lot in advance
#links #menu #page #remove #wordpress
  • Profile picture of the author Mark Ford
    Hi
    Just look for the lines
    <?php wp_list_pages('title_li=' ); ?>

    in your header template for the theme and remove and also remove any li classes such as:

    <li class="page_item"><a href="<?php echo get_option('home'); ?>/" title="Home">Home</a></li>

    which displays the link Home, and this will stop the pages displaying in the header.

    You can call the pages in the footer the same way if you want using the wp list pages call.

    Mark
    {{ DiscussionBoard.errors[1430969].message }}
    • Profile picture of the author John Atkins
      Originally Posted by Mark Ford View Post

      Hi
      Just look for the lines
      <?php wp_list_pages('title_li=' ); ?>

      in your header template for the theme and remove and also remove any li classes such as:

      <li class="page_item"><a href="<?php echo get_option('home'); ?>/" title="Home">Home</a></li>

      which displays the link Home, and this will stop the pages displaying in the header.

      You can call the pages in the footer the same way if you want using the wp list pages call.

      Mark

      Got it, thanks a lot mate
      {{ DiscussionBoard.errors[1431249].message }}
  • Profile picture of the author m4rx
    Work smarter not harder.
    Use the Wordpress plugin Exclude Pages
    WordPress › Exclude Pages WordPress Plugins

    --m4rx
    Signature
    We are what we repeatedly do. Excellence, then, is not an act, but a HABIT. ~Aristotle
    Bored. Learn everything you need to know about Organic Gardening.
    {{ DiscussionBoard.errors[1431245].message }}

Trending Topics