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
370      update_post_meta( $menu_item_db_id, '_menu_item_classes', $args['menu-item-classes'] );
371      update_post_meta( $menu_item_db_id, '_menu_item_xfn', $args['menu-item-xfn'] );
372      update_post_meta( $menu_item_db_id, '_menu_item_url', esc_url_raw($args['menu-item-url']) );
373
374      if ( 0 == $menu_id )
375           update_post_meta( $menu_item_db_id, '_menu_item_orphaned', time() );
376      else
377           delete_post_meta( $menu_item_db_id, '_menu_item_orphaned' );
378
379      do_action('wp_update_nav_menu_item', $menu_id, $menu_item_db_id, $args );
380
381      return $menu_item_db_id;
382 }
383
384 /**
385  * Returns all navigation menu objects.
386  *
387  * @since 3.0.0
388  *