I love the Painter theme, but would like to be able to add a page tha tI simply link to internally, but that does not appear on one of the menus/submenus. Any ideas?
I love the Painter theme, but would like to be able to add a page tha tI simply link to internally, but that does not appear on one of the menus/submenus. Any ideas?
Open up your theme's header.php and look for this block:
<!-- Menu -->
<div id="menu">
<ul>
<?php wp_list_pages('depth=2&title_li='); ?>
</ul>
</div>
and change it to
<!-- Menu -->
<div id="menu">
<ul>
<?php wp_list_pages('depth=2&title_li=&exclude=154'); ?>
</ul>
</div>
where you replace the number 154 in exclude=154 with the Page ID number
Or Install and activate plugin
http://wordpress.org/extend/plugins/exclude-pages/
so if you don't want to have specific Pages in navigation, just uncheck box in Page Write/Edit panel
This topic has been closed to new replies.