I am a newbie to wordpress. I know quite little about css and php so I am hoping somebody can help me a little. Basically, I want two pages to my website. The pages are called "about us" and "contact us" I want to place them on my footer navigation bar. I am wondering if it is possible to do this. ~If yes can you please give me instruction on how to do this. If it helps I am using nest theme.
Can somebody plz answer me...PLZ HELP
befree22
Member
Posted 6 months ago #
Under `<div id="footer">
<!--footer.php-->` you can add the following:
`<div id="left">
<ul id="footermenu" class="clearfix">
<li class="home"><a href="<?php echo get_settings('home'); ?>">Home</a></li>
<?php wp_list_pages('title_li=&depth=1&exclude=10,15,21,24,28,30,43,75,84,295'); ?>
</ul>`
Exclude means don't display the page id's for all pages except about and contact.