Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_update_nav_menu_item

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
395           delete_post_meta( $menu_item_db_id, '_menu_item_orphaned' );
396
397      // Update existing menu item. Default is publish status
398      if ( $update ) {
399           $post['ID'] = $menu_item_db_id;
400           $post['post_status'] = 'draft' == $args['menu-item-status'] ? 'draft' : 'publish';
401           wp_update_post( $post );
402      }
403
404      do_action('wp_update_nav_menu_item', $menu_id, $menu_item_db_id, $args );
405
406      return $menu_item_db_id;
407 }
408
409 /**
410  * Returns all navigation menu objects.
411  *
412  * @since 3.0.0
413  *