Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: nav_menu_meta_box_object

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

This hook occurs 2 times in this file.

Line Code
216            *
217            * If a falsey value is returned instead of an object, the menu items
218            * meta box for the current meta box object will not be added.
219            *
220            * @since 3.0.0
221            *
222            * @param object $meta_box_object The current object to add a menu items
223            *                                meta box for.
224            */
225           $post_type = apply_filters( 'nav_menu_meta_box_object', $post_type );
226           if ( $post_type ) {
227                $id = $post_type->name;
228                // Give pages a higher priority.
229                $priority = ( 'page' == $post_type->name ? 'core' : 'default' );
230                add_meta_box( "add-post-type-{$id}", $post_type->labels->name, 'wp_nav_menu_item_post_type_meta_box', 'nav-menus', 'side', $priority, $post_type );
231           }
232      }
233 }
234
 
Line Code
240 function wp_nav_menu_taxonomy_meta_boxes() {
241      $taxonomies = get_taxonomies( array( 'show_in_nav_menus' => true ), 'object' );
242
243      if ( ! $taxonomies ) {
244           return;
245      }
246
247      foreach ( $taxonomies as $tax ) {
248           /** This filter is documented in wp-admin/includes/nav-menu.php */
249           $tax = apply_filters( 'nav_menu_meta_box_object', $tax );
250           if ( $tax ) {
251                $id = $tax->name;
252                add_meta_box( "add-{$id}", $tax->labels->name, 'wp_nav_menu_item_taxonomy_meta_box', 'nav-menus', 'side', 'default', $tax );
253           }
254      }
255 }
256
257 /**
258  * Check whether to disable the Menu Locations meta box submit button