I am trying to exclude multiple posts from the menu by the wp_nav_menu exclude parameter but that does not work the way I want it. Only page with id 58 is excluded If I run the following lines of code:
<?php wp_nav_menu( array(
'exclude' => '58, 59, 60',
'fallback_cb' => 'bfa_page_menu'
) ); ?>
If I pass the IDs as an array the menu just crashes.
Any help is much appreciated.