How I can exclude my own page from menu
-
I used exclude the own page of the menu with wp_page_menu function
‘exclude’ => ‘my own page’
<?php $args = array( 'sort_column' => 'menu_order, post_title', 'menu_class' => 'menu', 'include' => '', 'exclude' => '', 'echo' => true, 'show_home' => false, 'link_before' => '', 'link_after' => '' ); ?
How I can do the same thing with wp_nav_menu ??
I am creating one menu to each page without the own page, but this is insane, because sometimes I have a lot pages to create.
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘How I can exclude my own page from menu’ is closed to new replies.