The WordPress function wp_get_nav_menu_items returns my whole site's navigation nested and all. Now if i want to get the nav menu for one "level" of that nested navigation only, how do I do that?
feedback
|
migrated from stackoverflow.com Feb 13 at 22:56
This question came from our site for professional and enthusiast programmers.
|
Are you trying to display the posts from the top down a certain number of levels? If so, use wp_nav_menu. It has an argument "depth" built just for this and it works painelssly.
Also, http://codex.wordpress.org/Function_Reference/wp_nav_menu | |||
|
feedback
|