Skip to content

Instantly share code, notes, and snippets.

@spacetrack
Last active December 23, 2015 18:09
Show Gist options
  • Save spacetrack/6674020 to your computer and use it in GitHub Desktop.
Save spacetrack/6674020 to your computer and use it in GitHub Desktop.
<?php
$mymenu = wp_get_nav_menu_object('Main Navigation Menu');
$menuID = (int) $mymenu->term_id;
$myPage = get_page_by_title('About Us');
itemData = array(
'menu-item-object-id' => $myPage->ID,
'menu-item-parent-id' => 0,
'menu-item-position' => 2,
'menu-item-object' => 'page',
'menu-item-type' => 'post_type',
'menu-item-status' => 'publish'
);
wp_update_nav_menu_item($menuID, 0, $itemData);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment