To hide a page or post from the navigation menu in WordPress do this usually in your theme’s sidebar.php or header.php if you are using pages on your menu. Note: most people are not using pages, posts are default for the navigation menu: <ul> <li><a href=”<?php bloginfo(‘url’); ?>”>Home</a></li> <?php wp_list_pages(‘title_li=&depth=1&exclude=8’); ?> </ul> Really, the key […]