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!
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.
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