Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: nav_menu_items_{$post_type_name}

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
537                      * @since 3.2.0
538                      * @since 4.6.0 Converted the `$post_type` parameter to accept a WP_Post_Type object.
539                      *
540                      * @see WP_Query::query()
541                      *
542                      * @param array        $posts     The posts for the current post type.
543                      * @param array        $args      An array of WP_Query arguments.
544                      * @param WP_Post_Type $post_type The current post type object for this menu item meta box.
545                      */
546                     $posts = apply_filters( "nav_menu_items_{$post_type_name}", $posts, $args, $post_type );
547
548                     $checkbox_items = walk_nav_menu_tree( array_map('wp_setup_nav_menu_item', $posts), 0, (object) $args );
549
550                     if ( 'all' == $current_tab && ! empty( $_REQUEST['selectall'] ) ) {
551                          $checkbox_items = preg_replace('/(type=(.)checkbox(\2))/', '$1 checked=$2checked$2', $checkbox_items);
552
553                     }
554
555                     echo $checkbox_items;