Remove the static “home” page from menu
-
I understand how to exclude pages.
<?php wp_list_pages('exclude=17,38' ); ?>
The problem is, my static home page has no page ID. It’s just called ‘welcome’. So I tried this:
<?php wp_list_pages('exclude=welcome' ); ?>
and that gave me an error screen.Then I tried the opposite (include instead of exclude)
<?php wp_list_pages('include=7,13,26,35&title_li=<h2>' . __('Pages') . '</h2>' ); ?>
but that messed up the menu and took more pages off the menu than it should have.What code do I use???
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Remove the static “home” page from menu’ is closed to new replies.