How do I customize the header and footer navigation to control which simple pages appear and in what order?
In my themes common header and footer, I have the following defined:
<?php echo public_nav_main(array( 'Library Home'=>uri('../'),'Collection Home' => uri('../34th_st/'), 'Browse Items' => uri('items'))); ?>
And see this in the plugins plugin.php page:
unction exhibit_builder_public_main_nav($navArray)
{
$navArray['Browse Exhibits'] = uri('exhibits');
return $navArray;
}
but if I suppress my entire navigation disappears. I would like to suppress in header and footer, how?

