The following code does not produce a UL with ID of "nav". It just produces
<div class="menu"><ul>
This is the code:
wp_nav_menu( array( 'theme_location' => 'menu-1', 'container_id' => 'nav';
According the WP Codex this should work. Why isn't it working?
WP version = 3.5
Update
I now have:
wp_nav_menu( array( 'theme_location' => 'menu-1', 'items_wrap' => '<ul id="nav">%3$s</ul>', 'menu_id' => 'nav'));
but this doesn't work either.
wp_nav_menu_argsand override your settings. – Milo Jan 13 at 3:35