Ever wanted to make it easy for your clients to have 2 navigation’s to easily add to? Usually you’d want 2 navigation’s if they are designed in separate locations.

<div id="menu">
<ul>
<?php $params = array( 'before' => '
<li>',
'after' => '</li>
',
'title_li' => '',
'exclude' => 26,
'depth' => 1 );
wp_list_pages($params);
?></ul>
</div>
<!--#menu-->
<div id="utilityNav">
<ul>
<?php $params = array( 'before' => '
<li>',
'after' => '</li>
',
'title_li' => '',
'include' => 26 );
wp_list_pages($params);
?></ul>
<!--#utilityNav--></div>
A better explanation than I could ever give will be found in WordPress Codex
here. This will explain why the settings above work, in their excellent ‘techy talk’.

The ’26′ as shown above is the ‘Contact Us’ page as shown in the image example [above]. As of right now, I haven’t yet figured out how to not
have to come back into the header and add page numbers to ‘exclude’ and ‘include’ when you do add a new page. If you know this before I come back and update this post, please share your ‘how to’ in a comment below!

Thanks! ♥