Hi I am building a menu using the code listed here.
http://codex.wordpress.org/Function_Reference/wp_get_nav_menu_items
Is there a way to suss out the menu hierarchy. As i can not debug this, it is difficult for me to see what wp_get_nav_menu_items actually returns.
$menu_items = wp_get_nav_menu_items($menu->term_id);
or
<?php $items = wp_get_nav_menu_items($menu, $args = array()); ?>
Is there a listing that describes the objects returned via wordpress functions?
Any help much appreciated.