Hey guys i need some help. I want to exclude a page from the nav menu (wp_list_pages) but only while they are logged in .
Starting code:
<?php wp_list_pages( 'title_li=&depth=&link_before=<span>&link_after=</span>' ); ?>
I think this is close to what I need:
<?php wp_list_pages( 'title_li=&depth=<?php if ( is_user_logged_in() ) { &exclude=6 } ?>&link_before=<span>&link_after=</span>' ); ?>