I want to show only top level pages, without the dropdown. I am trying to set the depth to 0...
wp_nav_menu( array( 'theme_location' => 'primary', 'depth' => 0 ) );
But it generates:
<ul>
<li class="current_page_item">
<a href="http://www.test.com/" title="Home">Home</a>
</li>
<li class="page_item page-item-11">
<a href="http://www.test.com/about/" title="About">About</a>
<ul class='children'>
<li><a></a></li> <!-- All sub-pages -->
<li><a></a></li> <!-- I want to skip them -->
</ul>
</li>
</ul>
How can I list only the top level pages?