]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/includes/nav-menu.php
WordPress 4.4
[autoinstalls/wordpress.git] / wp-admin / includes / nav-menu.php
1 <?php
2 /**
3  * Core Navigation Menu API
4  *
5  * @package WordPress
6  * @subpackage Nav_Menus
7  * @since 3.0.0
8  */
9
10 /** Walker_Nav_Menu_Edit class */
11 require_once( ABSPATH . 'wp-admin/includes/class-walker-nav-menu-edit.php' );
12
13 /** Walker_Nav_Menu_Checklist class */
14 require_once( ABSPATH . 'wp-admin/includes/class-walker-nav-menu-checklist.php' );
15
16 /**
17  * Prints the appropriate response to a menu quick search.
18  *
19  * @since 3.0.0
20  *
21  * @param array $request The unsanitized request values.
22  */
23 function _wp_ajax_menu_quick_search( $request = array() ) {
24         $args = array();
25         $type = isset( $request['type'] ) ? $request['type'] : '';
26         $object_type = isset( $request['object_type'] ) ? $request['object_type'] : '';
27         $query = isset( $request['q'] ) ? $request['q'] : '';
28         $response_format = isset( $request['response-format'] ) && in_array( $request['response-format'], array( 'json', 'markup' ) ) ? $request['response-format'] : 'json';
29
30         if ( 'markup' == $response_format ) {
31                 $args['walker'] = new Walker_Nav_Menu_Checklist;
32         }
33
34         if ( 'get-post-item' == $type ) {
35                 if ( post_type_exists( $object_type ) ) {
36                         if ( isset( $request['ID'] ) ) {
37                                 $object_id = (int) $request['ID'];
38                                 if ( 'markup' == $response_format ) {
39                                         echo walk_nav_menu_tree( array_map('wp_setup_nav_menu_item', array( get_post( $object_id ) ) ), 0, (object) $args );
40                                 } elseif ( 'json' == $response_format ) {
41                                         echo wp_json_encode(
42                                                 array(
43                                                         'ID' => $object_id,
44                                                         'post_title' => get_the_title( $object_id ),
45                                                         'post_type' => get_post_type( $object_id ),
46                                                 )
47                                         );
48                                         echo "\n";
49                                 }
50                         }
51                 } elseif ( taxonomy_exists( $object_type ) ) {
52                         if ( isset( $request['ID'] ) ) {
53                                 $object_id = (int) $request['ID'];
54                                 if ( 'markup' == $response_format ) {
55                                         echo walk_nav_menu_tree( array_map('wp_setup_nav_menu_item', array( get_term( $object_id, $object_type ) ) ), 0, (object) $args );
56                                 } elseif ( 'json' == $response_format ) {
57                                         $post_obj = get_term( $object_id, $object_type );
58                                         echo wp_json_encode(
59                                                 array(
60                                                         'ID' => $object_id,
61                                                         'post_title' => $post_obj->name,
62                                                         'post_type' => $object_type,
63                                                 )
64                                         );
65                                         echo "\n";
66                                 }
67                         }
68
69                 }
70
71         } elseif ( preg_match('/quick-search-(posttype|taxonomy)-([a-zA-Z_-]*\b)/', $type, $matches) ) {
72                 if ( 'posttype' == $matches[1] && get_post_type_object( $matches[2] ) ) {
73                         query_posts(array(
74                                 'posts_per_page' => 10,
75                                 'post_type' => $matches[2],
76                                 's' => $query,
77                         ));
78                         if ( ! have_posts() )
79                                 return;
80                         while ( have_posts() ) {
81                                 the_post();
82                                 if ( 'markup' == $response_format ) {
83                                         $var_by_ref = get_the_ID();
84                                         echo walk_nav_menu_tree( array_map('wp_setup_nav_menu_item', array( get_post( $var_by_ref ) ) ), 0, (object) $args );
85                                 } elseif ( 'json' == $response_format ) {
86                                         echo wp_json_encode(
87                                                 array(
88                                                         'ID' => get_the_ID(),
89                                                         'post_title' => get_the_title(),
90                                                         'post_type' => get_post_type(),
91                                                 )
92                                         );
93                                         echo "\n";
94                                 }
95                         }
96                 } elseif ( 'taxonomy' == $matches[1] ) {
97                         $terms = get_terms( $matches[2], array(
98                                 'name__like' => $query,
99                                 'number' => 10,
100                         ));
101                         if ( empty( $terms ) || is_wp_error( $terms ) )
102                                 return;
103                         foreach ( (array) $terms as $term ) {
104                                 if ( 'markup' == $response_format ) {
105                                         echo walk_nav_menu_tree( array_map('wp_setup_nav_menu_item', array( $term ) ), 0, (object) $args );
106                                 } elseif ( 'json' == $response_format ) {
107                                         echo wp_json_encode(
108                                                 array(
109                                                         'ID' => $term->term_id,
110                                                         'post_title' => $term->name,
111                                                         'post_type' => $matches[2],
112                                                 )
113                                         );
114                                         echo "\n";
115                                 }
116                         }
117                 }
118         }
119 }
120
121 /**
122  * Register nav menu metaboxes and advanced menu items
123  *
124  * @since 3.0.0
125  **/
126 function wp_nav_menu_setup() {
127         // Register meta boxes
128         wp_nav_menu_post_type_meta_boxes();
129         add_meta_box( 'add-custom-links', __( 'Custom Links' ), 'wp_nav_menu_item_link_meta_box', 'nav-menus', 'side', 'default' );
130         wp_nav_menu_taxonomy_meta_boxes();
131
132         // Register advanced menu items (columns)
133         add_filter( 'manage_nav-menus_columns', 'wp_nav_menu_manage_columns' );
134
135         // If first time editing, disable advanced items by default.
136         if ( false === get_user_option( 'managenav-menuscolumnshidden' ) ) {
137                 $user = wp_get_current_user();
138                 update_user_option($user->ID, 'managenav-menuscolumnshidden',
139                         array( 0 => 'link-target', 1 => 'css-classes', 2 => 'xfn', 3 => 'description', 4 => 'title-attribute', ),
140                         true);
141         }
142 }
143
144 /**
145  * Limit the amount of meta boxes to pages, posts, links, and categories for first time users.
146  *
147  * @since 3.0.0
148  *
149  * @global array $wp_meta_boxes
150  **/
151 function wp_initial_nav_menu_meta_boxes() {
152         global $wp_meta_boxes;
153
154         if ( get_user_option( 'metaboxhidden_nav-menus' ) !== false || ! is_array($wp_meta_boxes) )
155                 return;
156
157         $initial_meta_boxes = array( 'add-post-type-page', 'add-post-type-post', 'add-custom-links', 'add-category' );
158         $hidden_meta_boxes = array();
159
160         foreach ( array_keys($wp_meta_boxes['nav-menus']) as $context ) {
161                 foreach ( array_keys($wp_meta_boxes['nav-menus'][$context]) as $priority ) {
162                         foreach ( $wp_meta_boxes['nav-menus'][$context][$priority] as $box ) {
163                                 if ( in_array( $box['id'], $initial_meta_boxes ) ) {
164                                         unset( $box['id'] );
165                                 } else {
166                                         $hidden_meta_boxes[] = $box['id'];
167                                 }
168                         }
169                 }
170         }
171
172         $user = wp_get_current_user();
173         update_user_option( $user->ID, 'metaboxhidden_nav-menus', $hidden_meta_boxes, true );
174 }
175
176 /**
177  * Creates metaboxes for any post type menu item.
178  *
179  * @since 3.0.0
180  */
181 function wp_nav_menu_post_type_meta_boxes() {
182         $post_types = get_post_types( array( 'show_in_nav_menus' => true ), 'object' );
183
184         if ( ! $post_types )
185                 return;
186
187         foreach ( $post_types as $post_type ) {
188                 /**
189                  * Filter whether a menu items meta box will be added for the current
190                  * object type.
191                  *
192                  * If a falsey value is returned instead of an object, the menu items
193                  * meta box for the current meta box object will not be added.
194                  *
195                  * @since 3.0.0
196                  *
197                  * @param object $meta_box_object The current object to add a menu items
198                  *                                meta box for.
199                  */
200                 $post_type = apply_filters( 'nav_menu_meta_box_object', $post_type );
201                 if ( $post_type ) {
202                         $id = $post_type->name;
203                         // Give pages a higher priority.
204                         $priority = ( 'page' == $post_type->name ? 'core' : 'default' );
205                         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 );
206                 }
207         }
208 }
209
210 /**
211  * Creates metaboxes for any taxonomy menu item.
212  *
213  * @since 3.0.0
214  */
215 function wp_nav_menu_taxonomy_meta_boxes() {
216         $taxonomies = get_taxonomies( array( 'show_in_nav_menus' => true ), 'object' );
217
218         if ( !$taxonomies )
219                 return;
220
221         foreach ( $taxonomies as $tax ) {
222                 /** This filter is documented in wp-admin/includes/nav-menu.php */
223                 $tax = apply_filters( 'nav_menu_meta_box_object', $tax );
224                 if ( $tax ) {
225                         $id = $tax->name;
226                         add_meta_box( "add-{$id}", $tax->labels->name, 'wp_nav_menu_item_taxonomy_meta_box', 'nav-menus', 'side', 'default', $tax );
227                 }
228         }
229 }
230
231 /**
232  * Check whether to disable the Menu Locations meta box submit button
233  *
234  * @since 3.6.0
235  *
236  * @global bool $one_theme_location_no_menus to determine if no menus exist
237  *
238  * @param int|string $nav_menu_selected_id (id, name or slug) of the currently-selected menu
239  * @return string Disabled attribute if at least one menu exists, false if not
240 */
241 function wp_nav_menu_disabled_check( $nav_menu_selected_id ) {
242         global $one_theme_location_no_menus;
243
244         if ( $one_theme_location_no_menus )
245                 return false;
246
247         return disabled( $nav_menu_selected_id, 0 );
248 }
249
250 /**
251  * Displays a metabox for the custom links menu item.
252  *
253  * @since 3.0.0
254  *
255  * @global int        $_nav_menu_placeholder
256  * @global int|string $nav_menu_selected_id
257  */
258 function wp_nav_menu_item_link_meta_box() {
259         global $_nav_menu_placeholder, $nav_menu_selected_id;
260
261         $_nav_menu_placeholder = 0 > $_nav_menu_placeholder ? $_nav_menu_placeholder - 1 : -1;
262
263         ?>
264         <div class="customlinkdiv" id="customlinkdiv">
265                 <input type="hidden" value="custom" name="menu-item[<?php echo $_nav_menu_placeholder; ?>][menu-item-type]" />
266                 <p id="menu-item-url-wrap">
267                         <label class="howto" for="custom-menu-item-url">
268                                 <span><?php _e('URL'); ?></span>
269                                 <input id="custom-menu-item-url" name="menu-item[<?php echo $_nav_menu_placeholder; ?>][menu-item-url]" type="text" class="code menu-item-textbox" value="http://" />
270                         </label>
271                 </p>
272
273                 <p id="menu-item-name-wrap">
274                         <label class="howto" for="custom-menu-item-name">
275                                 <span><?php _e( 'Link Text' ); ?></span>
276                                 <input id="custom-menu-item-name" name="menu-item[<?php echo $_nav_menu_placeholder; ?>][menu-item-title]" type="text" class="regular-text menu-item-textbox input-with-default-title" title="<?php esc_attr_e('Menu Item'); ?>" />
277                         </label>
278                 </p>
279
280                 <p class="button-controls">
281                         <span class="add-to-menu">
282                                 <input type="submit"<?php wp_nav_menu_disabled_check( $nav_menu_selected_id ); ?> class="button-secondary submit-add-to-menu right" value="<?php esc_attr_e('Add to Menu'); ?>" name="add-custom-menu-item" id="submit-customlinkdiv" />
283                                 <span class="spinner"></span>
284                         </span>
285                 </p>
286
287         </div><!-- /.customlinkdiv -->
288         <?php
289 }
290
291 /**
292  * Displays a metabox for a post type menu item.
293  *
294  * @since 3.0.0
295  *
296  * @global int        $_nav_menu_placeholder
297  * @global int|string $nav_menu_selected_id
298  *
299  * @param string $object Not used.
300  * @param string $post_type The post type object.
301  */
302 function wp_nav_menu_item_post_type_meta_box( $object, $post_type ) {
303         global $_nav_menu_placeholder, $nav_menu_selected_id;
304
305         $post_type_name = $post_type['args']->name;
306
307         // Paginate browsing for large numbers of post objects.
308         $per_page = 50;
309         $pagenum = isset( $_REQUEST[$post_type_name . '-tab'] ) && isset( $_REQUEST['paged'] ) ? absint( $_REQUEST['paged'] ) : 1;
310         $offset = 0 < $pagenum ? $per_page * ( $pagenum - 1 ) : 0;
311
312         $args = array(
313                 'offset' => $offset,
314                 'order' => 'ASC',
315                 'orderby' => 'title',
316                 'posts_per_page' => $per_page,
317                 'post_type' => $post_type_name,
318                 'suppress_filters' => true,
319                 'update_post_term_cache' => false,
320                 'update_post_meta_cache' => false
321         );
322
323         if ( isset( $post_type['args']->_default_query ) )
324                 $args = array_merge($args, (array) $post_type['args']->_default_query );
325
326         // @todo transient caching of these results with proper invalidation on updating of a post of this type
327         $get_posts = new WP_Query;
328         $posts = $get_posts->query( $args );
329         if ( ! $get_posts->post_count ) {
330                 echo '<p>' . __( 'No items.' ) . '</p>';
331                 return;
332         }
333
334         $num_pages = $get_posts->max_num_pages;
335
336         $page_links = paginate_links( array(
337                 'base' => add_query_arg(
338                         array(
339                                 $post_type_name . '-tab' => 'all',
340                                 'paged' => '%#%',
341                                 'item-type' => 'post_type',
342                                 'item-object' => $post_type_name,
343                         )
344                 ),
345                 'format' => '',
346                 'prev_text' => __('&laquo;'),
347                 'next_text' => __('&raquo;'),
348                 'total' => $num_pages,
349                 'current' => $pagenum
350         ));
351
352         $db_fields = false;
353         if ( is_post_type_hierarchical( $post_type_name ) ) {
354                 $db_fields = array( 'parent' => 'post_parent', 'id' => 'ID' );
355         }
356
357         $walker = new Walker_Nav_Menu_Checklist( $db_fields );
358
359         $current_tab = 'most-recent';
360         if ( isset( $_REQUEST[$post_type_name . '-tab'] ) && in_array( $_REQUEST[$post_type_name . '-tab'], array('all', 'search') ) ) {
361                 $current_tab = $_REQUEST[$post_type_name . '-tab'];
362         }
363
364         if ( ! empty( $_REQUEST['quick-search-posttype-' . $post_type_name] ) ) {
365                 $current_tab = 'search';
366         }
367
368         $removed_args = array(
369                 'action',
370                 'customlink-tab',
371                 'edit-menu-item',
372                 'menu-item',
373                 'page-tab',
374                 '_wpnonce',
375         );
376
377         ?>
378         <div id="posttype-<?php echo $post_type_name; ?>" class="posttypediv">
379                 <ul id="posttype-<?php echo $post_type_name; ?>-tabs" class="posttype-tabs add-menu-item-tabs">
380                         <li <?php echo ( 'most-recent' == $current_tab ? ' class="tabs"' : '' ); ?>>
381                                 <a class="nav-tab-link" data-type="tabs-panel-posttype-<?php echo esc_attr( $post_type_name ); ?>-most-recent" href="<?php if ( $nav_menu_selected_id ) echo esc_url(add_query_arg($post_type_name . '-tab', 'most-recent', remove_query_arg($removed_args))); ?>#tabs-panel-posttype-<?php echo $post_type_name; ?>-most-recent">
382                                         <?php _e( 'Most Recent' ); ?>
383                                 </a>
384                         </li>
385                         <li <?php echo ( 'all' == $current_tab ? ' class="tabs"' : '' ); ?>>
386                                 <a class="nav-tab-link" data-type="<?php echo esc_attr( $post_type_name ); ?>-all" href="<?php if ( $nav_menu_selected_id ) echo esc_url(add_query_arg($post_type_name . '-tab', 'all', remove_query_arg($removed_args))); ?>#<?php echo $post_type_name; ?>-all">
387                                         <?php _e( 'View All' ); ?>
388                                 </a>
389                         </li>
390                         <li <?php echo ( 'search' == $current_tab ? ' class="tabs"' : '' ); ?>>
391                                 <a class="nav-tab-link" data-type="tabs-panel-posttype-<?php echo esc_attr( $post_type_name ); ?>-search" href="<?php if ( $nav_menu_selected_id ) echo esc_url(add_query_arg($post_type_name . '-tab', 'search', remove_query_arg($removed_args))); ?>#tabs-panel-posttype-<?php echo $post_type_name; ?>-search">
392                                         <?php _e( 'Search'); ?>
393                                 </a>
394                         </li>
395                 </ul><!-- .posttype-tabs -->
396
397                 <div id="tabs-panel-posttype-<?php echo $post_type_name; ?>-most-recent" class="tabs-panel <?php
398                         echo ( 'most-recent' == $current_tab ? 'tabs-panel-active' : 'tabs-panel-inactive' );
399                 ?>">
400                         <ul id="<?php echo $post_type_name; ?>checklist-most-recent" class="categorychecklist form-no-clear">
401                                 <?php
402                                 $recent_args = array_merge( $args, array( 'orderby' => 'post_date', 'order' => 'DESC', 'posts_per_page' => 15 ) );
403                                 $most_recent = $get_posts->query( $recent_args );
404                                 $args['walker'] = $walker;
405
406                                 /**
407                                  * Filter the posts displayed in the 'Most Recent' tab of the current
408                                  * post type's menu items meta box.
409                                  *
410                                  * The dynamic portion of the hook name, `$post_type_name`, refers to the post type name.
411                                  *
412                                  * @since 4.3.0
413                                  *
414                                  * @param array  $most_recent An array of post objects being listed.
415                                  * @param array  $args        An array of WP_Query arguments.
416                                  * @param object $post_type   The current post type object for this menu item meta box.
417                                  */
418                                 $most_recent = apply_filters( "nav_menu_items_{$post_type_name}_recent", $most_recent, $args, $post_type );
419
420                                 echo walk_nav_menu_tree( array_map('wp_setup_nav_menu_item', $most_recent), 0, (object) $args );
421                                 ?>
422                         </ul>
423                 </div><!-- /.tabs-panel -->
424
425                 <div class="tabs-panel <?php
426                         echo ( 'search' == $current_tab ? 'tabs-panel-active' : 'tabs-panel-inactive' );
427                 ?>" id="tabs-panel-posttype-<?php echo $post_type_name; ?>-search">
428                         <?php
429                         if ( isset( $_REQUEST['quick-search-posttype-' . $post_type_name] ) ) {
430                                 $searched = esc_attr( $_REQUEST['quick-search-posttype-' . $post_type_name] );
431                                 $search_results = get_posts( array( 's' => $searched, 'post_type' => $post_type_name, 'fields' => 'all', 'order' => 'DESC', ) );
432                         } else {
433                                 $searched = '';
434                                 $search_results = array();
435                         }
436                         ?>
437                         <p class="quick-search-wrap">
438                                 <input type="search" class="quick-search input-with-default-title" title="<?php esc_attr_e('Search'); ?>" value="<?php echo $searched; ?>" name="quick-search-posttype-<?php echo $post_type_name; ?>" />
439                                 <span class="spinner"></span>
440                                 <?php submit_button( __( 'Search' ), 'button-small quick-search-submit button-secondary hide-if-js', 'submit', false, array( 'id' => 'submit-quick-search-posttype-' . $post_type_name ) ); ?>
441                         </p>
442
443                         <ul id="<?php echo $post_type_name; ?>-search-checklist" data-wp-lists="list:<?php echo $post_type_name?>" class="categorychecklist form-no-clear">
444                         <?php if ( ! empty( $search_results ) && ! is_wp_error( $search_results ) ) : ?>
445                                 <?php
446                                 $args['walker'] = $walker;
447                                 echo walk_nav_menu_tree( array_map('wp_setup_nav_menu_item', $search_results), 0, (object) $args );
448                                 ?>
449                         <?php elseif ( is_wp_error( $search_results ) ) : ?>
450                                 <li><?php echo $search_results->get_error_message(); ?></li>
451                         <?php elseif ( ! empty( $searched ) ) : ?>
452                                 <li><?php _e('No results found.'); ?></li>
453                         <?php endif; ?>
454                         </ul>
455                 </div><!-- /.tabs-panel -->
456
457                 <div id="<?php echo $post_type_name; ?>-all" class="tabs-panel tabs-panel-view-all <?php
458                         echo ( 'all' == $current_tab ? 'tabs-panel-active' : 'tabs-panel-inactive' );
459                 ?>">
460                         <?php if ( ! empty( $page_links ) ) : ?>
461                                 <div class="add-menu-item-pagelinks">
462                                         <?php echo $page_links; ?>
463                                 </div>
464                         <?php endif; ?>
465                         <ul id="<?php echo $post_type_name; ?>checklist" data-wp-lists="list:<?php echo $post_type_name?>" class="categorychecklist form-no-clear">
466                                 <?php
467                                 $args['walker'] = $walker;
468
469                                 /*
470                                  * If we're dealing with pages, let's put a checkbox for the front
471                                  * page at the top of the list.
472                                  */
473                                 if ( 'page' == $post_type_name ) {
474                                         $front_page = 'page' == get_option('show_on_front') ? (int) get_option( 'page_on_front' ) : 0;
475                                         if ( ! empty( $front_page ) ) {
476                                                 $front_page_obj = get_post( $front_page );
477                                                 $front_page_obj->front_or_home = true;
478                                                 array_unshift( $posts, $front_page_obj );
479                                         } else {
480                                                 $_nav_menu_placeholder = ( 0 > $_nav_menu_placeholder ) ? intval($_nav_menu_placeholder) - 1 : -1;
481                                                 array_unshift( $posts, (object) array(
482                                                         'front_or_home' => true,
483                                                         'ID' => 0,
484                                                         'object_id' => $_nav_menu_placeholder,
485                                                         'post_content' => '',
486                                                         'post_excerpt' => '',
487                                                         'post_parent' => '',
488                                                         'post_title' => _x('Home', 'nav menu home label'),
489                                                         'post_type' => 'nav_menu_item',
490                                                         'type' => 'custom',
491                                                         'url' => home_url('/'),
492                                                 ) );
493                                         }
494                                 }
495
496                                 $post_type = get_post_type_object( $post_type_name );
497                                 $archive_link = get_post_type_archive_link( $post_type_name );
498                                 if ( $post_type->has_archive ) {
499                                         $_nav_menu_placeholder = ( 0 > $_nav_menu_placeholder ) ? intval($_nav_menu_placeholder) - 1 : -1;
500                                         array_unshift( $posts, (object) array(
501                                                 'ID' => 0,
502                                                 'object_id' => $_nav_menu_placeholder,
503                                                 'object'     => $post_type_name,
504                                                 'post_content' => '',
505                                                 'post_excerpt' => '',
506                                                 'post_title' => $post_type->labels->archives,
507                                                 'post_type' => 'nav_menu_item',
508                                                 'type' => 'post_type_archive',
509                                                 'url' => get_post_type_archive_link( $post_type_name ),
510                                         ) );
511                                 }
512
513                                 /**
514                                  * Filter the posts displayed in the 'View All' tab of the current
515                                  * post type's menu items meta box.
516                                  *
517                                  * The dynamic portion of the hook name, `$post_type_name`, refers
518                                  * to the slug of the current post type.
519                                  *
520                                  * @since 3.2.0
521                                  *
522                                  * @see WP_Query::query()
523                                  *
524                                  * @param array  $posts     The posts for the current post type.
525                                  * @param array  $args      An array of WP_Query arguments.
526                                  * @param object $post_type The current post type object for this menu item meta box.
527                                  */
528                                 $posts = apply_filters( "nav_menu_items_{$post_type_name}", $posts, $args, $post_type );
529                                 $checkbox_items = walk_nav_menu_tree( array_map('wp_setup_nav_menu_item', $posts), 0, (object) $args );
530
531                                 if ( 'all' == $current_tab && ! empty( $_REQUEST['selectall'] ) ) {
532                                         $checkbox_items = preg_replace('/(type=(.)checkbox(\2))/', '$1 checked=$2checked$2', $checkbox_items);
533
534                                 }
535
536                                 echo $checkbox_items;
537                                 ?>
538                         </ul>
539                         <?php if ( ! empty( $page_links ) ) : ?>
540                                 <div class="add-menu-item-pagelinks">
541                                         <?php echo $page_links; ?>
542                                 </div>
543                         <?php endif; ?>
544                 </div><!-- /.tabs-panel -->
545
546                 <p class="button-controls">
547                         <span class="list-controls">
548                                 <a href="<?php
549                                         echo esc_url( add_query_arg(
550                                                 array(
551                                                         $post_type_name . '-tab' => 'all',
552                                                         'selectall' => 1,
553                                                 ),
554                                                 remove_query_arg( $removed_args )
555                                         ));
556                                 ?>#posttype-<?php echo $post_type_name; ?>" class="select-all"><?php _e('Select All'); ?></a>
557                         </span>
558
559                         <span class="add-to-menu">
560                                 <input type="submit"<?php wp_nav_menu_disabled_check( $nav_menu_selected_id ); ?> class="button-secondary submit-add-to-menu right" value="<?php esc_attr_e( 'Add to Menu' ); ?>" name="add-post-type-menu-item" id="<?php echo esc_attr( 'submit-posttype-' . $post_type_name ); ?>" />
561                                 <span class="spinner"></span>
562                         </span>
563                 </p>
564
565         </div><!-- /.posttypediv -->
566         <?php
567 }
568
569 /**
570  * Displays a metabox for a taxonomy menu item.
571  *
572  * @since 3.0.0
573  *
574  * @global int|string $nav_menu_selected_id
575  *
576  * @param string $object Not used.
577  * @param string $taxonomy The taxonomy object.
578  */
579 function wp_nav_menu_item_taxonomy_meta_box( $object, $taxonomy ) {
580         global $nav_menu_selected_id;
581         $taxonomy_name = $taxonomy['args']->name;
582
583         // Paginate browsing for large numbers of objects.
584         $per_page = 50;
585         $pagenum = isset( $_REQUEST[$taxonomy_name . '-tab'] ) && isset( $_REQUEST['paged'] ) ? absint( $_REQUEST['paged'] ) : 1;
586         $offset = 0 < $pagenum ? $per_page * ( $pagenum - 1 ) : 0;
587
588         $args = array(
589                 'child_of' => 0,
590                 'exclude' => '',
591                 'hide_empty' => false,
592                 'hierarchical' => 1,
593                 'include' => '',
594                 'number' => $per_page,
595                 'offset' => $offset,
596                 'order' => 'ASC',
597                 'orderby' => 'name',
598                 'pad_counts' => false,
599         );
600
601         $terms = get_terms( $taxonomy_name, $args );
602
603         if ( ! $terms || is_wp_error($terms) ) {
604                 echo '<p>' . __( 'No items.' ) . '</p>';
605                 return;
606         }
607
608         $num_pages = ceil( wp_count_terms( $taxonomy_name , array_merge( $args, array('number' => '', 'offset' => '') ) ) / $per_page );
609
610         $page_links = paginate_links( array(
611                 'base' => add_query_arg(
612                         array(
613                                 $taxonomy_name . '-tab' => 'all',
614                                 'paged' => '%#%',
615                                 'item-type' => 'taxonomy',
616                                 'item-object' => $taxonomy_name,
617                         )
618                 ),
619                 'format' => '',
620                 'prev_text' => __('&laquo;'),
621                 'next_text' => __('&raquo;'),
622                 'total' => $num_pages,
623                 'current' => $pagenum
624         ));
625
626         $db_fields = false;
627         if ( is_taxonomy_hierarchical( $taxonomy_name ) ) {
628                 $db_fields = array( 'parent' => 'parent', 'id' => 'term_id' );
629         }
630
631         $walker = new Walker_Nav_Menu_Checklist( $db_fields );
632
633         $current_tab = 'most-used';
634         if ( isset( $_REQUEST[$taxonomy_name . '-tab'] ) && in_array( $_REQUEST[$taxonomy_name . '-tab'], array('all', 'most-used', 'search') ) ) {
635                 $current_tab = $_REQUEST[$taxonomy_name . '-tab'];
636         }
637
638         if ( ! empty( $_REQUEST['quick-search-taxonomy-' . $taxonomy_name] ) ) {
639                 $current_tab = 'search';
640         }
641
642         $removed_args = array(
643                 'action',
644                 'customlink-tab',
645                 'edit-menu-item',
646                 'menu-item',
647                 'page-tab',
648                 '_wpnonce',
649         );
650
651         ?>
652         <div id="taxonomy-<?php echo $taxonomy_name; ?>" class="taxonomydiv">
653                 <ul id="taxonomy-<?php echo $taxonomy_name; ?>-tabs" class="taxonomy-tabs add-menu-item-tabs">
654                         <li <?php echo ( 'most-used' == $current_tab ? ' class="tabs"' : '' ); ?>>
655                                 <a class="nav-tab-link" data-type="tabs-panel-<?php echo esc_attr( $taxonomy_name ); ?>-pop" href="<?php if ( $nav_menu_selected_id ) echo esc_url(add_query_arg($taxonomy_name . '-tab', 'most-used', remove_query_arg($removed_args))); ?>#tabs-panel-<?php echo $taxonomy_name; ?>-pop">
656                                         <?php _e( 'Most Used' ); ?>
657                                 </a>
658                         </li>
659                         <li <?php echo ( 'all' == $current_tab ? ' class="tabs"' : '' ); ?>>
660                                 <a class="nav-tab-link" data-type="tabs-panel-<?php echo esc_attr( $taxonomy_name ); ?>-all" href="<?php if ( $nav_menu_selected_id ) echo esc_url(add_query_arg($taxonomy_name . '-tab', 'all', remove_query_arg($removed_args))); ?>#tabs-panel-<?php echo $taxonomy_name; ?>-all">
661                                         <?php _e( 'View All' ); ?>
662                                 </a>
663                         </li>
664                         <li <?php echo ( 'search' == $current_tab ? ' class="tabs"' : '' ); ?>>
665                                 <a class="nav-tab-link" data-type="tabs-panel-search-taxonomy-<?php echo esc_attr( $taxonomy_name ); ?>" href="<?php if ( $nav_menu_selected_id ) echo esc_url(add_query_arg($taxonomy_name . '-tab', 'search', remove_query_arg($removed_args))); ?>#tabs-panel-search-taxonomy-<?php echo $taxonomy_name; ?>">
666                                         <?php _e( 'Search' ); ?>
667                                 </a>
668                         </li>
669                 </ul><!-- .taxonomy-tabs -->
670
671                 <div id="tabs-panel-<?php echo $taxonomy_name; ?>-pop" class="tabs-panel <?php
672                         echo ( 'most-used' == $current_tab ? 'tabs-panel-active' : 'tabs-panel-inactive' );
673                 ?>">
674                         <ul id="<?php echo $taxonomy_name; ?>checklist-pop" class="categorychecklist form-no-clear" >
675                                 <?php
676                                 $popular_terms = get_terms( $taxonomy_name, array( 'orderby' => 'count', 'order' => 'DESC', 'number' => 10, 'hierarchical' => false ) );
677                                 $args['walker'] = $walker;
678                                 echo walk_nav_menu_tree( array_map('wp_setup_nav_menu_item', $popular_terms), 0, (object) $args );
679                                 ?>
680                         </ul>
681                 </div><!-- /.tabs-panel -->
682
683                 <div id="tabs-panel-<?php echo $taxonomy_name; ?>-all" class="tabs-panel tabs-panel-view-all <?php
684                         echo ( 'all' == $current_tab ? 'tabs-panel-active' : 'tabs-panel-inactive' );
685                 ?>">
686                         <?php if ( ! empty( $page_links ) ) : ?>
687                                 <div class="add-menu-item-pagelinks">
688                                         <?php echo $page_links; ?>
689                                 </div>
690                         <?php endif; ?>
691                         <ul id="<?php echo $taxonomy_name; ?>checklist" data-wp-lists="list:<?php echo $taxonomy_name?>" class="categorychecklist form-no-clear">
692                                 <?php
693                                 $args['walker'] = $walker;
694                                 echo walk_nav_menu_tree( array_map('wp_setup_nav_menu_item', $terms), 0, (object) $args );
695                                 ?>
696                         </ul>
697                         <?php if ( ! empty( $page_links ) ) : ?>
698                                 <div class="add-menu-item-pagelinks">
699                                         <?php echo $page_links; ?>
700                                 </div>
701                         <?php endif; ?>
702                 </div><!-- /.tabs-panel -->
703
704                 <div class="tabs-panel <?php
705                         echo ( 'search' == $current_tab ? 'tabs-panel-active' : 'tabs-panel-inactive' );
706                 ?>" id="tabs-panel-search-taxonomy-<?php echo $taxonomy_name; ?>">
707                         <?php
708                         if ( isset( $_REQUEST['quick-search-taxonomy-' . $taxonomy_name] ) ) {
709                                 $searched = esc_attr( $_REQUEST['quick-search-taxonomy-' . $taxonomy_name] );
710                                 $search_results = get_terms( $taxonomy_name, array( 'name__like' => $searched, 'fields' => 'all', 'orderby' => 'count', 'order' => 'DESC', 'hierarchical' => false ) );
711                         } else {
712                                 $searched = '';
713                                 $search_results = array();
714                         }
715                         ?>
716                         <p class="quick-search-wrap">
717                                 <input type="search" class="quick-search input-with-default-title" title="<?php esc_attr_e('Search'); ?>" value="<?php echo $searched; ?>" name="quick-search-taxonomy-<?php echo $taxonomy_name; ?>" />
718                                 <span class="spinner"></span>
719                                 <?php submit_button( __( 'Search' ), 'button-small quick-search-submit button-secondary hide-if-js', 'submit', false, array( 'id' => 'submit-quick-search-taxonomy-' . $taxonomy_name ) ); ?>
720                         </p>
721
722                         <ul id="<?php echo $taxonomy_name; ?>-search-checklist" data-wp-lists="list:<?php echo $taxonomy_name?>" class="categorychecklist form-no-clear">
723                         <?php if ( ! empty( $search_results ) && ! is_wp_error( $search_results ) ) : ?>
724                                 <?php
725                                 $args['walker'] = $walker;
726                                 echo walk_nav_menu_tree( array_map('wp_setup_nav_menu_item', $search_results), 0, (object) $args );
727                                 ?>
728                         <?php elseif ( is_wp_error( $search_results ) ) : ?>
729                                 <li><?php echo $search_results->get_error_message(); ?></li>
730                         <?php elseif ( ! empty( $searched ) ) : ?>
731                                 <li><?php _e('No results found.'); ?></li>
732                         <?php endif; ?>
733                         </ul>
734                 </div><!-- /.tabs-panel -->
735
736                 <p class="button-controls">
737                         <span class="list-controls">
738                                 <a href="<?php
739                                         echo esc_url(add_query_arg(
740                                                 array(
741                                                         $taxonomy_name . '-tab' => 'all',
742                                                         'selectall' => 1,
743                                                 ),
744                                                 remove_query_arg($removed_args)
745                                         ));
746                                 ?>#taxonomy-<?php echo $taxonomy_name; ?>" class="select-all"><?php _e('Select All'); ?></a>
747                         </span>
748
749                         <span class="add-to-menu">
750                                 <input type="submit"<?php wp_nav_menu_disabled_check( $nav_menu_selected_id ); ?> class="button-secondary submit-add-to-menu right" value="<?php esc_attr_e( 'Add to Menu' ); ?>" name="add-taxonomy-menu-item" id="<?php echo esc_attr( 'submit-taxonomy-' . $taxonomy_name ); ?>" />
751                                 <span class="spinner"></span>
752                         </span>
753                 </p>
754
755         </div><!-- /.taxonomydiv -->
756         <?php
757 }
758
759 /**
760  * Save posted nav menu item data.
761  *
762  * @since 3.0.0
763  *
764  * @param int $menu_id The menu ID for which to save this item. $menu_id of 0 makes a draft, orphaned menu item.
765  * @param array $menu_data The unsanitized posted menu item data.
766  * @return array The database IDs of the items saved
767  */
768 function wp_save_nav_menu_items( $menu_id = 0, $menu_data = array() ) {
769         $menu_id = (int) $menu_id;
770         $items_saved = array();
771
772         if ( 0 == $menu_id || is_nav_menu( $menu_id ) ) {
773
774                 // Loop through all the menu items' POST values.
775                 foreach ( (array) $menu_data as $_possible_db_id => $_item_object_data ) {
776                         if (
777                                 // Checkbox is not checked.
778                                 empty( $_item_object_data['menu-item-object-id'] ) &&
779                                 (
780                                         // And item type either isn't set.
781                                         ! isset( $_item_object_data['menu-item-type'] ) ||
782                                         // Or URL is the default.
783                                         in_array( $_item_object_data['menu-item-url'], array( 'http://', '' ) ) ||
784                                         ! ( 'custom' == $_item_object_data['menu-item-type'] && ! isset( $_item_object_data['menu-item-db-id'] ) ) || // or it's not a custom menu item (but not the custom home page)
785                                         // Or it *is* a custom menu item that already exists.
786                                         ! empty( $_item_object_data['menu-item-db-id'] )
787                                 )
788                         ) {
789                                 // Then this potential menu item is not getting added to this menu.
790                                 continue;
791                         }
792
793                         // If this possible menu item doesn't actually have a menu database ID yet.
794                         if (
795                                 empty( $_item_object_data['menu-item-db-id'] ) ||
796                                 ( 0 > $_possible_db_id ) ||
797                                 $_possible_db_id != $_item_object_data['menu-item-db-id']
798                         ) {
799                                 $_actual_db_id = 0;
800                         } else {
801                                 $_actual_db_id = (int) $_item_object_data['menu-item-db-id'];
802                         }
803
804                         $args = array(
805                                 'menu-item-db-id' => ( isset( $_item_object_data['menu-item-db-id'] ) ? $_item_object_data['menu-item-db-id'] : '' ),
806                                 'menu-item-object-id' => ( isset( $_item_object_data['menu-item-object-id'] ) ? $_item_object_data['menu-item-object-id'] : '' ),
807                                 'menu-item-object' => ( isset( $_item_object_data['menu-item-object'] ) ? $_item_object_data['menu-item-object'] : '' ),
808                                 'menu-item-parent-id' => ( isset( $_item_object_data['menu-item-parent-id'] ) ? $_item_object_data['menu-item-parent-id'] : '' ),
809                                 'menu-item-position' => ( isset( $_item_object_data['menu-item-position'] ) ? $_item_object_data['menu-item-position'] : '' ),
810                                 'menu-item-type' => ( isset( $_item_object_data['menu-item-type'] ) ? $_item_object_data['menu-item-type'] : '' ),
811                                 'menu-item-title' => ( isset( $_item_object_data['menu-item-title'] ) ? $_item_object_data['menu-item-title'] : '' ),
812                                 'menu-item-url' => ( isset( $_item_object_data['menu-item-url'] ) ? $_item_object_data['menu-item-url'] : '' ),
813                                 'menu-item-description' => ( isset( $_item_object_data['menu-item-description'] ) ? $_item_object_data['menu-item-description'] : '' ),
814                                 'menu-item-attr-title' => ( isset( $_item_object_data['menu-item-attr-title'] ) ? $_item_object_data['menu-item-attr-title'] : '' ),
815                                 'menu-item-target' => ( isset( $_item_object_data['menu-item-target'] ) ? $_item_object_data['menu-item-target'] : '' ),
816                                 'menu-item-classes' => ( isset( $_item_object_data['menu-item-classes'] ) ? $_item_object_data['menu-item-classes'] : '' ),
817                                 'menu-item-xfn' => ( isset( $_item_object_data['menu-item-xfn'] ) ? $_item_object_data['menu-item-xfn'] : '' ),
818                         );
819
820                         $items_saved[] = wp_update_nav_menu_item( $menu_id, $_actual_db_id, $args );
821
822                 }
823         }
824         return $items_saved;
825 }
826
827 /**
828  * Adds custom arguments to some of the meta box object types.
829  *
830  * @since 3.0.0
831  *
832  * @access private
833  *
834  * @param object $object The post type or taxonomy meta-object.
835  * @return object The post type of taxonomy object.
836  */
837 function _wp_nav_menu_meta_box_object( $object = null ) {
838         if ( isset( $object->name ) ) {
839
840                 if ( 'page' == $object->name ) {
841                         $object->_default_query = array(
842                                 'orderby' => 'menu_order title',
843                                 'post_status' => 'publish',
844                         );
845
846                 // Posts should show only published items.
847                 } elseif ( 'post' == $object->name ) {
848                         $object->_default_query = array(
849                                 'post_status' => 'publish',
850                         );
851
852                 // Categories should be in reverse chronological order.
853                 } elseif ( 'category' == $object->name ) {
854                         $object->_default_query = array(
855                                 'orderby' => 'id',
856                                 'order' => 'DESC',
857                         );
858
859                 // Custom post types should show only published items.
860                 } else {
861                         $object->_default_query = array(
862                                 'post_status' => 'publish',
863                         );
864                 }
865         }
866
867         return $object;
868 }
869
870 /**
871  * Returns the menu formatted to edit.
872  *
873  * @since 3.0.0
874  *
875  * @param int $menu_id Optional. The ID of the menu to format. Default 0.
876  * @return string|WP_Error $output The menu formatted to edit or error object on failure.
877  */
878 function wp_get_nav_menu_to_edit( $menu_id = 0 ) {
879         $menu = wp_get_nav_menu_object( $menu_id );
880
881         // If the menu exists, get its items.
882         if ( is_nav_menu( $menu ) ) {
883                 $menu_items = wp_get_nav_menu_items( $menu->term_id, array('post_status' => 'any') );
884                 $result = '<div id="menu-instructions" class="post-body-plain';
885                 $result .= ( ! empty($menu_items) ) ? ' menu-instructions-inactive">' : '">';
886                 $result .= '<p>' . __( 'Add menu items from the column on the left.' ) . '</p>';
887                 $result .= '</div>';
888
889                 if ( empty($menu_items) )
890                         return $result . ' <ul class="menu" id="menu-to-edit"> </ul>';
891
892                 /**
893                  * Filter the Walker class used when adding nav menu items.
894                  *
895                  * @since 3.0.0
896                  *
897                  * @param string $class   The walker class to use. Default 'Walker_Nav_Menu_Edit'.
898                  * @param int    $menu_id ID of the menu being rendered.
899                  */
900                 $walker_class_name = apply_filters( 'wp_edit_nav_menu_walker', 'Walker_Nav_Menu_Edit', $menu_id );
901
902                 if ( class_exists( $walker_class_name ) ) {
903                         $walker = new $walker_class_name;
904                 } else {
905                         return new WP_Error( 'menu_walker_not_exist',
906                                 /* translators: %s: walker class name */
907                                 sprintf( __( 'The Walker class named %s does not exist.' ),
908                                         '<strong>' . $walker_class_name . '</strong>'
909                                 )
910                         );
911                 }
912
913                 $some_pending_menu_items = $some_invalid_menu_items = false;
914                 foreach ( (array) $menu_items as $menu_item ) {
915                         if ( isset( $menu_item->post_status ) && 'draft' == $menu_item->post_status )
916                                 $some_pending_menu_items = true;
917                         if ( ! empty( $menu_item->_invalid ) )
918                                 $some_invalid_menu_items = true;
919                 }
920
921                 if ( $some_pending_menu_items )
922                         $result .= '<div class="updated inline"><p>' . __('Click Save Menu to make pending menu items public.') . '</p></div>';
923
924                 if ( $some_invalid_menu_items )
925                         $result .= '<div class="error inline"><p>' . __('There are some invalid menu items. Please check or delete them.') . '</p></div>';
926
927                 $result .= '<ul class="menu" id="menu-to-edit"> ';
928                 $result .= walk_nav_menu_tree( array_map('wp_setup_nav_menu_item', $menu_items), 0, (object) array('walker' => $walker ) );
929                 $result .= ' </ul> ';
930                 return $result;
931         } elseif ( is_wp_error( $menu ) ) {
932                 return $menu;
933         }
934
935 }
936
937 /**
938  * Returns the columns for the nav menus page.
939  *
940  * @since 3.0.0
941  *
942  * @return string|WP_Error $output The menu formatted to edit or error object on failure.
943  */
944 function wp_nav_menu_manage_columns() {
945         return array(
946                 '_title' => __('Show advanced menu properties'),
947                 'cb' => '<input type="checkbox" />',
948                 'title-attribute' => __('Title Attribute'),
949                 'link-target' => __('Link Target'),
950                 'css-classes' => __('CSS Classes'),
951                 'xfn' => __('Link Relationship (XFN)'),
952                 'description' => __('Description'),
953         );
954 }
955
956 /**
957  * Deletes orphaned draft menu items
958  *
959  * @access private
960  * @since 3.0.0
961  *
962  * @global wpdb $wpdb WordPress database abstraction object.
963  */
964 function _wp_delete_orphaned_draft_menu_items() {
965         global $wpdb;
966         $delete_timestamp = time() - ( DAY_IN_SECONDS * EMPTY_TRASH_DAYS );
967
968         // Delete orphaned draft menu items.
969         $menu_items_to_delete = $wpdb->get_col($wpdb->prepare("SELECT ID FROM $wpdb->posts AS p LEFT JOIN $wpdb->postmeta AS m ON p.ID = m.post_id WHERE post_type = 'nav_menu_item' AND post_status = 'draft' AND meta_key = '_menu_item_orphaned' AND meta_value < '%d'", $delete_timestamp ) );
970
971         foreach ( (array) $menu_items_to_delete as $menu_item_id )
972                 wp_delete_post( $menu_item_id, true );
973 }
974
975 /**
976  * Saves nav menu items
977  *
978  * @since 3.6.0
979  *
980  * @param int|string $nav_menu_selected_id (id, slug, or name ) of the currently-selected menu
981  * @param string $nav_menu_selected_title Title of the currently-selected menu
982  * @return array $messages The menu updated message
983  */
984 function wp_nav_menu_update_menu_items ( $nav_menu_selected_id, $nav_menu_selected_title ) {
985         $unsorted_menu_items = wp_get_nav_menu_items( $nav_menu_selected_id, array( 'orderby' => 'ID', 'output' => ARRAY_A, 'output_key' => 'ID', 'post_status' => 'draft,publish' ) );
986         $messages = array();
987         $menu_items = array();
988         // Index menu items by db ID
989         foreach ( $unsorted_menu_items as $_item )
990                 $menu_items[$_item->db_id] = $_item;
991
992         $post_fields = array(
993                 'menu-item-db-id', 'menu-item-object-id', 'menu-item-object',
994                 'menu-item-parent-id', 'menu-item-position', 'menu-item-type',
995                 'menu-item-title', 'menu-item-url', 'menu-item-description',
996                 'menu-item-attr-title', 'menu-item-target', 'menu-item-classes', 'menu-item-xfn'
997         );
998
999         wp_defer_term_counting( true );
1000         // Loop through all the menu items' POST variables
1001         if ( ! empty( $_POST['menu-item-db-id'] ) ) {
1002                 foreach ( (array) $_POST['menu-item-db-id'] as $_key => $k ) {
1003
1004                         // Menu item title can't be blank
1005                         if ( ! isset( $_POST['menu-item-title'][ $_key ] ) || '' == $_POST['menu-item-title'][ $_key ] )
1006                                 continue;
1007
1008                         $args = array();
1009                         foreach ( $post_fields as $field )
1010                                 $args[$field] = isset( $_POST[$field][$_key] ) ? $_POST[$field][$_key] : '';
1011
1012                         $menu_item_db_id = wp_update_nav_menu_item( $nav_menu_selected_id, ( $_POST['menu-item-db-id'][$_key] != $_key ? 0 : $_key ), $args );
1013
1014                         if ( is_wp_error( $menu_item_db_id ) ) {
1015                                 $messages[] = '<div id="message" class="error"><p>' . $menu_item_db_id->get_error_message() . '</p></div>';
1016                         } else {
1017                                 unset( $menu_items[ $menu_item_db_id ] );
1018                         }
1019                 }
1020         }
1021
1022         // Remove menu items from the menu that weren't in $_POST
1023         if ( ! empty( $menu_items ) ) {
1024                 foreach ( array_keys( $menu_items ) as $menu_item_id ) {
1025                         if ( is_nav_menu_item( $menu_item_id ) ) {
1026                                 wp_delete_post( $menu_item_id );
1027                         }
1028                 }
1029         }
1030
1031         // Store 'auto-add' pages.
1032         $auto_add = ! empty( $_POST['auto-add-pages'] );
1033         $nav_menu_option = (array) get_option( 'nav_menu_options' );
1034         if ( ! isset( $nav_menu_option['auto_add'] ) )
1035                 $nav_menu_option['auto_add'] = array();
1036         if ( $auto_add ) {
1037                 if ( ! in_array( $nav_menu_selected_id, $nav_menu_option['auto_add'] ) )
1038                         $nav_menu_option['auto_add'][] = $nav_menu_selected_id;
1039         } else {
1040                 if ( false !== ( $key = array_search( $nav_menu_selected_id, $nav_menu_option['auto_add'] ) ) )
1041                         unset( $nav_menu_option['auto_add'][$key] );
1042         }
1043         // Remove nonexistent/deleted menus
1044         $nav_menu_option['auto_add'] = array_intersect( $nav_menu_option['auto_add'], wp_get_nav_menus( array( 'fields' => 'ids' ) ) );
1045         update_option( 'nav_menu_options', $nav_menu_option );
1046
1047         wp_defer_term_counting( false );
1048
1049         /** This action is documented in wp-includes/nav-menu.php */
1050         do_action( 'wp_update_nav_menu', $nav_menu_selected_id );
1051
1052         $messages[] = '<div id="message" class="updated notice is-dismissible"><p>' .
1053                 /* translators: %s: nav menu title */
1054                 sprintf( __( '%s has been updated.' ),
1055                         '<strong>' . $nav_menu_selected_title . '</strong>'
1056                 ) . '</p></div>';
1057
1058         unset( $menu_items, $unsorted_menu_items );
1059
1060         return $messages;
1061 }