Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_edit_nav_menu_walker

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
1524           if ( ! empty( $menu_obj->ID ) ) {
1525                $menu_obj        = wp_setup_nav_menu_item( $menu_obj );
1526                $menu_obj->title = empty( $menu_obj->title ) ? __( 'Menu Item' ) : $menu_obj->title;
1527                $menu_obj->label = $menu_obj->title; // Don't show "(pending)" in ajax-added items.
1528                $menu_items[]    = $menu_obj;
1529           }
1530      }
1531
1532      /** This filter is documented in wp-admin/includes/nav-menu.php */
1533      $walker_class_name = apply_filters( 'wp_edit_nav_menu_walker', 'Walker_Nav_Menu_Edit', $_POST['menu'] );
1534
1535      if ( ! class_exists( $walker_class_name ) ) {
1536           wp_die( 0 );
1537      }
1538
1539      if ( ! empty( $menu_items ) ) {
1540           $args = array(
1541                'after'       => '',
1542                'before'      => '',