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.