Skip to content

Instantly share code, notes, and snippets.

@davidsword
Last active February 3, 2018 03:08
Show Gist options
  • Save davidsword/dd8c37ee312e1658960c583ea618eec1 to your computer and use it in GitHub Desktop.
Save davidsword/dd8c37ee312e1658960c583ea618eec1 to your computer and use it in GitHub Desktop.
<?
$navigation_relation = array();
$navitems = wp_get_nav_menu_items('your-nav');
foreach ($navitems as $navobject)
$navigation_relation[$navobject->ID] = $navobject->object_id;
print_r($navigation_relation);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment