Wordpress Get the items of the menu – WordPress April 18, 2012 Pramod T P <?php $menuId=51; foreach(wp_get_nav_menu_items($menuId) as $menu) { echo $menu->title.”<br />”; } ?>