Wordpress: display different pages in header and footer

Discussion in 'WordPress' started by robojiannis, Apr 15, 2008.

  1. #1
    I'm trying to make a small wordpress site, where the pages at the header are different than the pages at the footer.
    Does anyone know how?
    Would really appreciate the help!
     
    robojiannis, Apr 15, 2008 IP
  2. North Carolina SEO

    North Carolina SEO Well-Known Member

    Messages:
    1,327
    Likes Received:
    44
    Best Answers:
    0
    Trophy Points:
    105
    #2
    Are you speaking about the links showing up within the pages versus the footer or are you making a call within the template the the exact same header page?

    If you are making a call at both the top and bottom of the template page to the same header page, just change the bottom one to footer instead of header. :)
     
    North Carolina SEO, Apr 15, 2008 IP
  3. Edynas

    Edynas Peon

    Messages:
    796
    Likes Received:
    24
    Best Answers:
    0
    Trophy Points:
    0
    #3
    In the function list_pages there is a variable called exclude. That way you can decide not to mention certain pages in the call for the pages. Exclude the onces that you don't want in the header and footer

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

    <ul>
    <?php
    wp_list_pages('exclude=17,38' ); ?>
    </ul>
    Code (markup):
    There is also the opposite..the include variable which let you choose just to display those pages you want by using this code

    <ul>
    <?php
    wp_list_pages('include=7,13,26,35&title_li=<h2>' . __('Pages') . '</h2>' ); ?>
    </ul>
    Code (markup):
    As you see you will need the pagenumbers and not the names.
    But if it's just a few pages...I would go static and go the old plain html way instead of this code
     
    Edynas, Apr 15, 2008 IP
  4. robojiannis

    robojiannis Peon

    Messages:
    45
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Thanks Edynas, that was exactly what I needed!
     
    robojiannis, Apr 15, 2008 IP
  5. Edynas

    Edynas Peon

    Messages:
    796
    Likes Received:
    24
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Your welcome
     
    Edynas, Apr 16, 2008 IP