[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-includes/ -> nav-menu.php (source)

   1  <?php
   2  /**
   3   * Navigation Menu functions
   4   *
   5   * @package WordPress
   6   * @subpackage Nav_Menus
   7   * @since 3.0.0
   8   */
   9  
  10  /**
  11   * Returns a navigation menu object.
  12   *
  13   * @since 3.0.0
  14   *
  15   * @param int|string|WP_Term $menu Menu ID, slug, name, or object.
  16   * @return WP_Term|false Menu object on success, false if $menu param isn't supplied or term does not exist.
  17   */
  18  function wp_get_nav_menu_object( $menu ) {
  19      $menu_obj = false;
  20  
  21      if ( is_object( $menu ) ) {
  22          $menu_obj = $menu;
  23      }
  24  
  25      if ( $menu && ! $menu_obj ) {
  26          $menu_obj = get_term( $menu, 'nav_menu' );
  27  
  28          if ( ! $menu_obj ) {
  29              $menu_obj = get_term_by( 'slug', $menu, 'nav_menu' );
  30          }
  31  
  32          if ( ! $menu_obj ) {
  33              $menu_obj = get_term_by( 'name', $menu, 'nav_menu' );
  34          }
  35      }
  36  
  37      if ( ! $menu_obj || is_wp_error( $menu_obj ) ) {
  38          $menu_obj = false;
  39      }
  40  
  41      /**
  42       * Filters the nav_menu term retrieved for wp_get_nav_menu_object().
  43       *
  44       * @since 4.3.0
  45       *
  46       * @param WP_Term|false      $menu_obj Term from nav_menu taxonomy, or false if nothing had been found.
  47       * @param int|string|WP_Term $menu     The menu ID, slug, name, or object passed to wp_get_nav_menu_object().
  48       */
  49      return apply_filters( 'wp_get_nav_menu_object', $menu_obj, $menu );
  50  }
  51  
  52  /**
  53   * Determines whether the given ID is a navigation menu.
  54   *
  55   * Returns true if it is; false otherwise.
  56   *
  57   * @since 3.0.0
  58   *
  59   * @param int|string|WP_Term $menu Menu ID, slug, name, or object of menu to check.
  60   * @return bool Whether the menu exists.
  61   */
  62  function is_nav_menu( $menu ) {
  63      if ( ! $menu ) {
  64          return false;
  65      }
  66  
  67      $menu_obj = wp_get_nav_menu_object( $menu );
  68  
  69      if (
  70          $menu_obj &&
  71          ! is_wp_error( $menu_obj ) &&
  72          ! empty( $menu_obj->taxonomy ) &&
  73          'nav_menu' === $menu_obj->taxonomy
  74      ) {
  75          return true;
  76      }
  77  
  78      return false;
  79  }
  80  
  81  /**
  82   * Registers navigation menu locations for a theme.
  83   *
  84   * @since 3.0.0
  85   *
  86   * @global array $_wp_registered_nav_menus
  87   *
  88   * @param string[] $locations Associative array of menu location identifiers (like a slug) and descriptive text.
  89   */
  90  function register_nav_menus( $locations = array() ) {
  91      global $_wp_registered_nav_menus;
  92  
  93      add_theme_support( 'menus' );
  94  
  95      foreach ( $locations as $key => $value ) {
  96          if ( is_int( $key ) ) {
  97              _doing_it_wrong( __FUNCTION__, __( 'Nav menu locations must be strings.' ), '5.3.0' );
  98              break;
  99          }
 100      }
 101  
 102      $_wp_registered_nav_menus = array_merge( (array) $_wp_registered_nav_menus, $locations );
 103  }
 104  
 105  /**
 106   * Unregisters a navigation menu location for a theme.
 107   *
 108   * @since 3.1.0
 109   *
 110   * @global array $_wp_registered_nav_menus
 111   *
 112   * @param string $location The menu location identifier.
 113   * @return bool True on success, false on failure.
 114   */
 115  function unregister_nav_menu( $location ) {
 116      global $_wp_registered_nav_menus;
 117  
 118      if ( is_array( $_wp_registered_nav_menus ) && isset( $_wp_registered_nav_menus[ $location ] ) ) {
 119          unset( $_wp_registered_nav_menus[ $location ] );
 120          if ( empty( $_wp_registered_nav_menus ) ) {
 121              _remove_theme_support( 'menus' );
 122          }
 123          return true;
 124      }
 125      return false;
 126  }
 127  
 128  /**
 129   * Registers a navigation menu location for a theme.
 130   *
 131   * @since 3.0.0
 132   *
 133   * @param string $location    Menu location identifier, like a slug.
 134   * @param string $description Menu location descriptive text.
 135   */
 136  function register_nav_menu( $location, $description ) {
 137      register_nav_menus( array( $location => $description ) );
 138  }
 139  /**
 140   * Retrieves all registered navigation menu locations in a theme.
 141   *
 142   * @since 3.0.0
 143   *
 144   * @global array $_wp_registered_nav_menus
 145   *
 146   * @return string[] Associative array of registered navigation menu descriptions keyed
 147   *                  by their location. If none are registered, an empty array.
 148   */
 149  function get_registered_nav_menus() {
 150      global $_wp_registered_nav_menus;
 151      if ( isset( $_wp_registered_nav_menus ) ) {
 152          return $_wp_registered_nav_menus;
 153      }
 154      return array();
 155  }
 156  
 157  /**
 158   * Retrieves all registered navigation menu locations and the menus assigned to them.
 159   *
 160   * @since 3.0.0
 161   *
 162   * @return int[] Associative array of registered navigation menu IDs keyed by their
 163   *               location name. If none are registered, an empty array.
 164   */
 165  function get_nav_menu_locations() {
 166      $locations = get_theme_mod( 'nav_menu_locations' );
 167      return ( is_array( $locations ) ) ? $locations : array();
 168  }
 169  
 170  /**
 171   * Determines whether a registered nav menu location has a menu assigned to it.
 172   *
 173   * @since 3.0.0
 174   *
 175   * @param string $location Menu location identifier.
 176   * @return bool Whether location has a menu.
 177   */
 178  function has_nav_menu( $location ) {
 179      $has_nav_menu = false;
 180  
 181      $registered_nav_menus = get_registered_nav_menus();
 182      if ( isset( $registered_nav_menus[ $location ] ) ) {
 183          $locations    = get_nav_menu_locations();
 184          $has_nav_menu = ! empty( $locations[ $location ] );
 185      }
 186  
 187      /**
 188       * Filters whether a nav menu is assigned to the specified location.
 189       *
 190       * @since 4.3.0
 191       *
 192       * @param bool   $has_nav_menu Whether there is a menu assigned to a location.
 193       * @param string $location     Menu location.
 194       */
 195      return apply_filters( 'has_nav_menu', $has_nav_menu, $location );
 196  }
 197  
 198  /**
 199   * Returns the name of a navigation menu.
 200   *
 201   * @since 4.9.0
 202   *
 203   * @param string $location Menu location identifier.
 204   * @return string Menu name.
 205   */
 206  function wp_get_nav_menu_name( $location ) {
 207      $menu_name = '';
 208  
 209      $locations = get_nav_menu_locations();
 210  
 211      if ( isset( $locations[ $location ] ) ) {
 212          $menu = wp_get_nav_menu_object( $locations[ $location ] );
 213  
 214          if ( $menu && $menu->name ) {
 215              $menu_name = $menu->name;
 216          }
 217      }
 218  
 219      /**
 220       * Filters the navigation menu name being returned.
 221       *
 222       * @since 4.9.0
 223       *
 224       * @param string $menu_name Menu name.
 225       * @param string $location  Menu location identifier.
 226       */
 227      return apply_filters( 'wp_get_nav_menu_name', $menu_name, $location );
 228  }
 229  
 230  /**
 231   * Determines whether the given ID is a nav menu item.
 232   *
 233   * @since 3.0.0
 234   *
 235   * @param int $menu_item_id The ID of the potential nav menu item.
 236   * @return bool Whether the given ID is that of a nav menu item.
 237   */
 238  function is_nav_menu_item( $menu_item_id = 0 ) {
 239      return ( ! is_wp_error( $menu_item_id ) && ( 'nav_menu_item' === get_post_type( $menu_item_id ) ) );
 240  }
 241  
 242  /**
 243   * Creates a navigation menu.
 244   *
 245   * Note that `$menu_name` is expected to be pre-slashed.
 246   *
 247   * @since 3.0.0
 248   *
 249   * @param string $menu_name Menu name.
 250   * @return int|WP_Error Menu ID on success, WP_Error object on failure.
 251   */
 252  function wp_create_nav_menu( $menu_name ) {
 253      // expected_slashed ($menu_name)
 254      return wp_update_nav_menu_object( 0, array( 'menu-name' => $menu_name ) );
 255  }
 256  
 257  /**
 258   * Deletes a navigation menu.
 259   *
 260   * @since 3.0.0
 261   *
 262   * @param int|string|WP_Term $menu Menu ID, slug, name, or object.
 263   * @return bool|WP_Error True on success, false or WP_Error object on failure.
 264   */
 265  function wp_delete_nav_menu( $menu ) {
 266      $menu = wp_get_nav_menu_object( $menu );
 267      if ( ! $menu ) {
 268          return false;
 269      }
 270  
 271      $menu_objects = get_objects_in_term( $menu->term_id, 'nav_menu' );
 272      if ( ! empty( $menu_objects ) ) {
 273          foreach ( $menu_objects as $item ) {
 274              wp_delete_post( $item );
 275          }
 276      }
 277  
 278      $result = wp_delete_term( $menu->term_id, 'nav_menu' );
 279  
 280      // Remove this menu from any locations.
 281      $locations = get_nav_menu_locations();
 282      foreach ( $locations as $location => $menu_id ) {
 283          if ( $menu_id == $menu->term_id ) {
 284              $locations[ $location ] = 0;
 285          }
 286      }
 287      set_theme_mod( 'nav_menu_locations', $locations );
 288  
 289      if ( $result && ! is_wp_error( $result ) ) {
 290  
 291          /**
 292           * Fires after a navigation menu has been successfully deleted.
 293           *
 294           * @since 3.0.0
 295           *
 296           * @param int $term_id ID of the deleted menu.
 297           */
 298          do_action( 'wp_delete_nav_menu', $menu->term_id );
 299      }
 300  
 301      return $result;
 302  }
 303  
 304  /**
 305   * Saves the properties of a menu or create a new menu with those properties.
 306   *
 307   * Note that `$menu_data` is expected to be pre-slashed.
 308   *
 309   * @since 3.0.0
 310   *
 311   * @param int   $menu_id   The ID of the menu or "0" to create a new menu.
 312   * @param array $menu_data The array of menu data.
 313   * @return int|WP_Error Menu ID on success, WP_Error object on failure.
 314   */
 315  function wp_update_nav_menu_object( $menu_id = 0, $menu_data = array() ) {
 316      // expected_slashed ($menu_data)
 317      $menu_id = (int) $menu_id;
 318  
 319      $_menu = wp_get_nav_menu_object( $menu_id );
 320  
 321      $args = array(
 322          'description' => ( isset( $menu_data['description'] ) ? $menu_data['description'] : '' ),
 323          'name'        => ( isset( $menu_data['menu-name'] ) ? $menu_data['menu-name'] : '' ),
 324          'parent'      => ( isset( $menu_data['parent'] ) ? (int) $menu_data['parent'] : 0 ),
 325          'slug'        => null,
 326      );
 327  
 328      // Double-check that we're not going to have one menu take the name of another.
 329      $_possible_existing = get_term_by( 'name', $menu_data['menu-name'], 'nav_menu' );
 330      if (
 331          $_possible_existing &&
 332          ! is_wp_error( $_possible_existing ) &&
 333          isset( $_possible_existing->term_id ) &&
 334          $_possible_existing->term_id != $menu_id
 335      ) {
 336          return new WP_Error(
 337              'menu_exists',
 338              sprintf(
 339                  /* translators: %s: Menu name. */
 340                  __( 'The menu name %s conflicts with another menu name. Please try another.' ),
 341                  '<strong>' . esc_html( $menu_data['menu-name'] ) . '</strong>'
 342              )
 343          );
 344      }
 345  
 346      // Menu doesn't already exist, so create a new menu.
 347      if ( ! $_menu || is_wp_error( $_menu ) ) {
 348          $menu_exists = get_term_by( 'name', $menu_data['menu-name'], 'nav_menu' );
 349  
 350          if ( $menu_exists ) {
 351              return new WP_Error(
 352                  'menu_exists',
 353                  sprintf(
 354                      /* translators: %s: Menu name. */
 355                      __( 'The menu name %s conflicts with another menu name. Please try another.' ),
 356                      '<strong>' . esc_html( $menu_data['menu-name'] ) . '</strong>'
 357                  )
 358              );
 359          }
 360  
 361          $_menu = wp_insert_term( $menu_data['menu-name'], 'nav_menu', $args );
 362  
 363          if ( is_wp_error( $_menu ) ) {
 364              return $_menu;
 365          }
 366  
 367          /**
 368           * Fires after a navigation menu is successfully created.
 369           *
 370           * @since 3.0.0
 371           *
 372           * @param int   $term_id   ID of the new menu.
 373           * @param array $menu_data An array of menu data.
 374           */
 375          do_action( 'wp_create_nav_menu', $_menu['term_id'], $menu_data );
 376  
 377          return (int) $_menu['term_id'];
 378      }
 379  
 380      if ( ! $_menu || ! isset( $_menu->term_id ) ) {
 381          return 0;
 382      }
 383  
 384      $menu_id = (int) $_menu->term_id;
 385  
 386      $update_response = wp_update_term( $menu_id, 'nav_menu', $args );
 387  
 388      if ( is_wp_error( $update_response ) ) {
 389          return $update_response;
 390      }
 391  
 392      $menu_id = (int) $update_response['term_id'];
 393  
 394      /**
 395       * Fires after a navigation menu has been successfully updated.
 396       *
 397       * @since 3.0.0
 398       *
 399       * @param int   $menu_id   ID of the updated menu.
 400       * @param array $menu_data An array of menu data.
 401       */
 402      do_action( 'wp_update_nav_menu', $menu_id, $menu_data );
 403      return $menu_id;
 404  }
 405  
 406  /**
 407   * Saves the properties of a menu item or create a new one.
 408   *
 409   * The menu-item-title, menu-item-description and menu-item-attr-title are expected
 410   * to be pre-slashed since they are passed directly to APIs that expect slashed data.
 411   *
 412   * @since 3.0.0
 413   * @since 5.9.0 Added the `$fire_after_hooks` parameter.
 414   *
 415   * @param int   $menu_id          The ID of the menu. If 0, makes the menu item a draft orphan.
 416   * @param int   $menu_item_db_id  The ID of the menu item. If 0, creates a new menu item.
 417   * @param array $menu_item_data   The menu item's data.
 418   * @param bool  $fire_after_hooks Whether to fire the after insert hooks. Default true.
 419   * @return int|WP_Error The menu item's database ID or WP_Error object on failure.
 420   */
 421  function wp_update_nav_menu_item( $menu_id = 0, $menu_item_db_id = 0, $menu_item_data = array(), $fire_after_hooks = true ) {
 422      $menu_id         = (int) $menu_id;
 423      $menu_item_db_id = (int) $menu_item_db_id;
 424  
 425      // Make sure that we don't convert non-nav_menu_item objects into nav_menu_item objects.
 426      if ( ! empty( $menu_item_db_id ) && ! is_nav_menu_item( $menu_item_db_id ) ) {
 427          return new WP_Error( 'update_nav_menu_item_failed', __( 'The given object ID is not that of a menu item.' ) );
 428      }
 429  
 430      $menu = wp_get_nav_menu_object( $menu_id );
 431  
 432      if ( ! $menu && 0 !== $menu_id ) {
 433          return new WP_Error( 'invalid_menu_id', __( 'Invalid menu ID.' ) );
 434      }
 435  
 436      if ( is_wp_error( $menu ) ) {
 437          return $menu;
 438      }
 439  
 440      $defaults = array(
 441          'menu-item-db-id'         => $menu_item_db_id,
 442          'menu-item-object-id'     => 0,
 443          'menu-item-object'        => '',
 444          'menu-item-parent-id'     => 0,
 445          'menu-item-position'      => 0,
 446          'menu-item-type'          => 'custom',
 447          'menu-item-title'         => '',
 448          'menu-item-url'           => '',
 449          'menu-item-description'   => '',
 450          'menu-item-attr-title'    => '',
 451          'menu-item-target'        => '',
 452          'menu-item-classes'       => '',
 453          'menu-item-xfn'           => '',
 454          'menu-item-status'        => '',
 455          'menu-item-post-date'     => '',
 456          'menu-item-post-date-gmt' => '',
 457      );
 458  
 459      $args = wp_parse_args( $menu_item_data, $defaults );
 460  
 461      if ( 0 == $menu_id ) {
 462          $args['menu-item-position'] = 1;
 463      } elseif ( 0 == (int) $args['menu-item-position'] ) {
 464          $menu_items                 = 0 == $menu_id ? array() : (array) wp_get_nav_menu_items( $menu_id, array( 'post_status' => 'publish,draft' ) );
 465          $last_item                  = array_pop( $menu_items );
 466          $args['menu-item-position'] = ( $last_item && isset( $last_item->menu_order ) ) ? 1 + $last_item->menu_order : count( $menu_items );
 467      }
 468  
 469      $original_parent = 0 < $menu_item_db_id ? get_post_field( 'post_parent', $menu_item_db_id ) : 0;
 470  
 471      if ( 'custom' === $args['menu-item-type'] ) {
 472          // If custom menu item, trim the URL.
 473          $args['menu-item-url'] = trim( $args['menu-item-url'] );
 474      } else {
 475          /*
 476           * If non-custom menu item, then:
 477           * - use the original object's URL.
 478           * - blank default title to sync with the original object's title.
 479           */
 480  
 481          $args['menu-item-url'] = '';
 482  
 483          $original_title = '';
 484          if ( 'taxonomy' === $args['menu-item-type'] ) {
 485              $original_parent = get_term_field( 'parent', $args['menu-item-object-id'], $args['menu-item-object'], 'raw' );
 486              $original_title  = get_term_field( 'name', $args['menu-item-object-id'], $args['menu-item-object'], 'raw' );
 487          } elseif ( 'post_type' === $args['menu-item-type'] ) {
 488  
 489              $original_object = get_post( $args['menu-item-object-id'] );
 490              $original_parent = (int) $original_object->post_parent;
 491              $original_title  = $original_object->post_title;
 492          } elseif ( 'post_type_archive' === $args['menu-item-type'] ) {
 493              $original_object = get_post_type_object( $args['menu-item-object'] );
 494              if ( $original_object ) {
 495                  $original_title = $original_object->labels->archives;
 496              }
 497          }
 498  
 499          if ( wp_unslash( $args['menu-item-title'] ) === wp_specialchars_decode( $original_title ) ) {
 500              $args['menu-item-title'] = '';
 501          }
 502  
 503          // Hack to get wp to create a post object when too many properties are empty.
 504          if ( '' === $args['menu-item-title'] && '' === $args['menu-item-description'] ) {
 505              $args['menu-item-description'] = ' ';
 506          }
 507      }
 508  
 509      // Populate the menu item object.
 510      $post = array(
 511          'menu_order'   => $args['menu-item-position'],
 512          'ping_status'  => 0,
 513          'post_content' => $args['menu-item-description'],
 514          'post_excerpt' => $args['menu-item-attr-title'],
 515          'post_parent'  => $original_parent,
 516          'post_title'   => $args['menu-item-title'],
 517          'post_type'    => 'nav_menu_item',
 518      );
 519  
 520      $post_date = wp_resolve_post_date( $args['menu-item-post-date'], $args['menu-item-post-date-gmt'] );
 521      if ( $post_date ) {
 522          $post['post_date'] = $post_date;
 523      }
 524  
 525      $update = 0 != $menu_item_db_id;
 526  
 527      // New menu item. Default is draft status.
 528      if ( ! $update ) {
 529          $post['ID']          = 0;
 530          $post['post_status'] = 'publish' === $args['menu-item-status'] ? 'publish' : 'draft';
 531          $menu_item_db_id     = wp_insert_post( $post, true, $fire_after_hooks );
 532          if ( ! $menu_item_db_id || is_wp_error( $menu_item_db_id ) ) {
 533              return $menu_item_db_id;
 534          }
 535  
 536          /**
 537           * Fires immediately after a new navigation menu item has been added.
 538           *
 539           * @since 4.4.0
 540           *
 541           * @see wp_update_nav_menu_item()
 542           *
 543           * @param int   $menu_id         ID of the updated menu.
 544           * @param int   $menu_item_db_id ID of the new menu item.
 545           * @param array $args            An array of arguments used to update/add the menu item.
 546           */
 547          do_action( 'wp_add_nav_menu_item', $menu_id, $menu_item_db_id, $args );
 548      }
 549  
 550      /*
 551       * Associate the menu item with the menu term.
 552       * Only set the menu term if it isn't set to avoid unnecessary wp_get_object_terms().
 553       */
 554      if ( $menu_id && ( ! $update || ! is_object_in_term( $menu_item_db_id, 'nav_menu', (int) $menu->term_id ) ) ) {
 555          $update_terms = wp_set_object_terms( $menu_item_db_id, array( $menu->term_id ), 'nav_menu' );
 556          if ( is_wp_error( $update_terms ) ) {
 557              return $update_terms;
 558          }
 559      }
 560  
 561      if ( 'custom' === $args['menu-item-type'] ) {
 562          $args['menu-item-object-id'] = $menu_item_db_id;
 563          $args['menu-item-object']    = 'custom';
 564      }
 565  
 566      $menu_item_db_id = (int) $menu_item_db_id;
 567  
 568      // Reset invalid `menu_item_parent`.
 569      if ( (int) $args['menu-item-parent-id'] === $menu_item_db_id ) {
 570          $args['menu-item-parent-id'] = 0;
 571      }
 572  
 573      update_post_meta( $menu_item_db_id, '_menu_item_type', sanitize_key( $args['menu-item-type'] ) );
 574      update_post_meta( $menu_item_db_id, '_menu_item_menu_item_parent', (string) ( (int) $args['menu-item-parent-id'] ) );
 575      update_post_meta( $menu_item_db_id, '_menu_item_object_id', (string) ( (int) $args['menu-item-object-id'] ) );
 576      update_post_meta( $menu_item_db_id, '_menu_item_object', sanitize_key( $args['menu-item-object'] ) );
 577      update_post_meta( $menu_item_db_id, '_menu_item_target', sanitize_key( $args['menu-item-target'] ) );
 578  
 579      $args['menu-item-classes'] = array_map( 'sanitize_html_class', explode( ' ', $args['menu-item-classes'] ) );
 580      $args['menu-item-xfn']     = implode( ' ', array_map( 'sanitize_html_class', explode( ' ', $args['menu-item-xfn'] ) ) );
 581      update_post_meta( $menu_item_db_id, '_menu_item_classes', $args['menu-item-classes'] );
 582      update_post_meta( $menu_item_db_id, '_menu_item_xfn', $args['menu-item-xfn'] );
 583      update_post_meta( $menu_item_db_id, '_menu_item_url', sanitize_url( $args['menu-item-url'] ) );
 584  
 585      if ( 0 == $menu_id ) {
 586          update_post_meta( $menu_item_db_id, '_menu_item_orphaned', (string) time() );
 587      } elseif ( get_post_meta( $menu_item_db_id, '_menu_item_orphaned' ) ) {
 588          delete_post_meta( $menu_item_db_id, '_menu_item_orphaned' );
 589      }
 590  
 591      // Update existing menu item. Default is publish status.
 592      if ( $update ) {
 593          $post['ID']          = $menu_item_db_id;
 594          $post['post_status'] = ( 'draft' === $args['menu-item-status'] ) ? 'draft' : 'publish';
 595  
 596          $update_post = wp_update_post( $post, true );
 597          if ( is_wp_error( $update_post ) ) {
 598              return $update_post;
 599          }
 600      }
 601  
 602      /**
 603       * Fires after a navigation menu item has been updated.
 604       *
 605       * @since 3.0.0
 606       *
 607       * @see wp_update_nav_menu_item()
 608       *
 609       * @param int   $menu_id         ID of the updated menu.
 610       * @param int   $menu_item_db_id ID of the updated menu item.
 611       * @param array $args            An array of arguments used to update a menu item.
 612       */
 613      do_action( 'wp_update_nav_menu_item', $menu_id, $menu_item_db_id, $args );
 614  
 615      return $menu_item_db_id;
 616  }
 617  
 618  /**
 619   * Returns all navigation menu objects.
 620   *
 621   * @since 3.0.0
 622   * @since 4.1.0 Default value of the 'orderby' argument was changed from 'none'
 623   *              to 'name'.
 624   *
 625   * @param array $args Optional. Array of arguments passed on to get_terms().
 626   *                    Default empty array.
 627   * @return WP_Term[] An array of menu objects.
 628   */
 629  function wp_get_nav_menus( $args = array() ) {
 630      $defaults = array(
 631          'taxonomy'   => 'nav_menu',
 632          'hide_empty' => false,
 633          'orderby'    => 'name',
 634      );
 635      $args     = wp_parse_args( $args, $defaults );
 636  
 637      /**
 638       * Filters the navigation menu objects being returned.
 639       *
 640       * @since 3.0.0
 641       *
 642       * @see get_terms()
 643       *
 644       * @param WP_Term[] $menus An array of menu objects.
 645       * @param array     $args  An array of arguments used to retrieve menu objects.
 646       */
 647      return apply_filters( 'wp_get_nav_menus', get_terms( $args ), $args );
 648  }
 649  
 650  /**
 651   * Determines whether a menu item is valid.
 652   *
 653   * @link https://core.trac.wordpress.org/ticket/13958
 654   *
 655   * @since 3.2.0
 656   * @access private
 657   *
 658   * @param object $item The menu item to check.
 659   * @return bool False if invalid, otherwise true.
 660   */
 661  function _is_valid_nav_menu_item( $item ) {
 662      return empty( $item->_invalid );
 663  }
 664  
 665  /**
 666   * Retrieves all menu items of a navigation menu.
 667   *
 668   * Note: Most arguments passed to the `$args` parameter – save for 'output_key' – are
 669   * specifically for retrieving nav_menu_item posts from get_posts() and may only
 670   * indirectly affect the ultimate ordering and content of the resulting nav menu
 671   * items that get returned from this function.
 672   *
 673   * @since 3.0.0
 674   *
 675   * @param int|string|WP_Term $menu Menu ID, slug, name, or object.
 676   * @param array              $args {
 677   *     Optional. Arguments to pass to get_posts().
 678   *
 679   *     @type string $order                  How to order nav menu items as queried with get_posts().
 680   *                                          Will be ignored if 'output' is ARRAY_A. Default 'ASC'.
 681   *     @type string $orderby                Field to order menu items by as retrieved from get_posts().
 682   *                                          Supply an orderby field via 'output_key' to affect the
 683   *                                          output order of nav menu items. Default 'menu_order'.
 684   *     @type string $post_type              Menu items post type. Default 'nav_menu_item'.
 685   *     @type string $post_status            Menu items post status. Default 'publish'.
 686   *     @type string $output                 How to order outputted menu items. Default ARRAY_A.
 687   *     @type string $output_key             Key to use for ordering the actual menu items that get
 688   *                                          returned. Note that that is not a get_posts() argument
 689   *                                          and will only affect output of menu items processed in
 690   *                                          this function. Default 'menu_order'.
 691   *     @type bool   $nopaging               Whether to retrieve all menu items (true) or paginate
 692   *                                          (false). Default true.
 693   *     @type bool   $update_menu_item_cache Whether to update the menu item cache. Default true.
 694   * }
 695   * @return array|false Array of menu items, otherwise false.
 696   */
 697  function wp_get_nav_menu_items( $menu, $args = array() ) {
 698      $menu = wp_get_nav_menu_object( $menu );
 699  
 700      if ( ! $menu ) {
 701          return false;
 702      }
 703  
 704      if ( ! taxonomy_exists( 'nav_menu' ) ) {
 705          return false;
 706      }
 707  
 708      $defaults = array(
 709          'order'                  => 'ASC',
 710          'orderby'                => 'menu_order',
 711          'post_type'              => 'nav_menu_item',
 712          'post_status'            => 'publish',
 713          'output'                 => ARRAY_A,
 714          'output_key'             => 'menu_order',
 715          'nopaging'               => true,
 716          'update_menu_item_cache' => true,
 717          'tax_query'              => array(
 718              array(
 719                  'taxonomy' => 'nav_menu',
 720                  'field'    => 'term_taxonomy_id',
 721                  'terms'    => $menu->term_taxonomy_id,
 722              ),
 723          ),
 724      );
 725      $args     = wp_parse_args( $args, $defaults );
 726      if ( $menu->count > 0 ) {
 727          $items = get_posts( $args );
 728      } else {
 729          $items = array();
 730      }
 731  
 732      $items = array_map( 'wp_setup_nav_menu_item', $items );
 733  
 734      if ( ! is_admin() ) { // Remove invalid items only on front end.
 735          $items = array_filter( $items, '_is_valid_nav_menu_item' );
 736      }
 737  
 738      if ( ARRAY_A === $args['output'] ) {
 739          $items = wp_list_sort(
 740              $items,
 741              array(
 742                  $args['output_key'] => 'ASC',
 743              )
 744          );
 745  
 746          $i = 1;
 747  
 748          foreach ( $items as $k => $item ) {
 749              $items[ $k ]->{$args['output_key']} = $i++;
 750          }
 751      }
 752  
 753      /**
 754       * Filters the navigation menu items being returned.
 755       *
 756       * @since 3.0.0
 757       *
 758       * @param array  $items An array of menu item post objects.
 759       * @param object $menu  The menu object.
 760       * @param array  $args  An array of arguments used to retrieve menu item objects.
 761       */
 762      return apply_filters( 'wp_get_nav_menu_items', $items, $menu, $args );
 763  }
 764  
 765  /**
 766   * Updates post and term caches for all linked objects for a list of menu items.
 767   *
 768   * @since 6.1.0
 769   *
 770   * @param WP_Post[] $menu_items Array of menu item post objects.
 771   */
 772  function update_menu_item_cache( $menu_items ) {
 773      $post_ids = array();
 774      $term_ids = array();
 775  
 776      foreach ( $menu_items as $menu_item ) {
 777          if ( 'nav_menu_item' !== $menu_item->post_type ) {
 778              continue;
 779          }
 780  
 781          $object_id = get_post_meta( $menu_item->ID, '_menu_item_object_id', true );
 782          $type      = get_post_meta( $menu_item->ID, '_menu_item_type', true );
 783  
 784          if ( 'post_type' === $type ) {
 785              $post_ids[] = (int) $object_id;
 786          } elseif ( 'taxonomy' === $type ) {
 787              $term_ids[] = (int) $object_id;
 788          }
 789      }
 790  
 791      if ( ! empty( $post_ids ) ) {
 792          _prime_post_caches( $post_ids, false );
 793      }
 794  
 795      if ( ! empty( $term_ids ) ) {
 796          _prime_term_caches( $term_ids );
 797      }
 798  }
 799  
 800  /**
 801   * Decorates a menu item object with the shared navigation menu item properties.
 802   *
 803   * Properties:
 804   * - ID:               The term_id if the menu item represents a taxonomy term.
 805   * - attr_title:       The title attribute of the link element for this menu item.
 806   * - classes:          The array of class attribute values for the link element of this menu item.
 807   * - db_id:            The DB ID of this item as a nav_menu_item object, if it exists (0 if it doesn't exist).
 808   * - description:      The description of this menu item.
 809   * - menu_item_parent: The DB ID of the nav_menu_item that is this item's menu parent, if any. 0 otherwise.
 810   * - object:           The type of object originally represented, such as 'category', 'post', or 'attachment'.
 811   * - object_id:        The DB ID of the original object this menu item represents, e.g. ID for posts and term_id for categories.
 812   * - post_parent:      The DB ID of the original object's parent object, if any (0 otherwise).
 813   * - post_title:       A "no title" label if menu item represents a post that lacks a title.
 814   * - target:           The target attribute of the link element for this menu item.
 815   * - title:            The title of this menu item.
 816   * - type:             The family of objects originally represented, such as 'post_type' or 'taxonomy'.
 817   * - type_label:       The singular label used to describe this type of menu item.
 818   * - url:              The URL to which this menu item points.
 819   * - xfn:              The XFN relationship expressed in the link of this menu item.
 820   * - _invalid:         Whether the menu item represents an object that no longer exists.
 821   *
 822   * @since 3.0.0
 823   *
 824   * @param object $menu_item The menu item to modify.
 825   * @return object The menu item with standard menu item properties.
 826   */
 827  function wp_setup_nav_menu_item( $menu_item ) {
 828  
 829      /**
 830       * Filters whether to short-circuit the wp_setup_nav_menu_item() output.
 831       *
 832       * Returning a non-null value from the filter will short-circuit wp_setup_nav_menu_item(),
 833       * returning that value instead.
 834       *
 835       * @since 6.3.0
 836       *
 837       * @param object|null $modified_menu_item Modified menu item. Default null.
 838       * @param object      $menu_item          The menu item to modify.
 839       */
 840      $pre_menu_item = apply_filters( 'pre_wp_setup_nav_menu_item', null, $menu_item );
 841  
 842      if ( null !== $pre_menu_item ) {
 843          return $pre_menu_item;
 844      }
 845  
 846      if ( isset( $menu_item->post_type ) ) {
 847          if ( 'nav_menu_item' === $menu_item->post_type ) {
 848              $menu_item->db_id            = (int) $menu_item->ID;
 849              $menu_item->menu_item_parent = ! isset( $menu_item->menu_item_parent ) ? get_post_meta( $menu_item->ID, '_menu_item_menu_item_parent', true ) : $menu_item->menu_item_parent;
 850              $menu_item->object_id        = ! isset( $menu_item->object_id ) ? get_post_meta( $menu_item->ID, '_menu_item_object_id', true ) : $menu_item->object_id;
 851              $menu_item->object           = ! isset( $menu_item->object ) ? get_post_meta( $menu_item->ID, '_menu_item_object', true ) : $menu_item->object;
 852              $menu_item->type             = ! isset( $menu_item->type ) ? get_post_meta( $menu_item->ID, '_menu_item_type', true ) : $menu_item->type;
 853  
 854              if ( 'post_type' === $menu_item->type ) {
 855                  $object = get_post_type_object( $menu_item->object );
 856                  if ( $object ) {
 857                      $menu_item->type_label = $object->labels->singular_name;
 858                      // Denote post states for special pages (only in the admin).
 859                      if ( function_exists( 'get_post_states' ) ) {
 860                          $menu_post   = get_post( $menu_item->object_id );
 861                          $post_states = get_post_states( $menu_post );
 862                          if ( $post_states ) {
 863                              $menu_item->type_label = wp_strip_all_tags( implode( ', ', $post_states ) );
 864                          }
 865                      }
 866                  } else {
 867                      $menu_item->type_label = $menu_item->object;
 868                      $menu_item->_invalid   = true;
 869                  }
 870  
 871                  if ( 'trash' === get_post_status( $menu_item->object_id ) ) {
 872                      $menu_item->_invalid = true;
 873                  }
 874  
 875                  $original_object = get_post( $menu_item->object_id );
 876  
 877                  if ( $original_object ) {
 878                      $menu_item->url = get_permalink( $original_object->ID );
 879                      /** This filter is documented in wp-includes/post-template.php */
 880                      $original_title = apply_filters( 'the_title', $original_object->post_title, $original_object->ID );
 881                  } else {
 882                      $menu_item->url      = '';
 883                      $original_title      = '';
 884                      $menu_item->_invalid = true;
 885                  }
 886  
 887                  if ( '' === $original_title ) {
 888                      /* translators: %d: ID of a post. */
 889                      $original_title = sprintf( __( '#%d (no title)' ), $menu_item->object_id );
 890                  }
 891  
 892                  $menu_item->title = ( '' === $menu_item->post_title ) ? $original_title : $menu_item->post_title;
 893  
 894              } elseif ( 'post_type_archive' === $menu_item->type ) {
 895                  $object = get_post_type_object( $menu_item->object );
 896                  if ( $object ) {
 897                      $menu_item->title      = ( '' === $menu_item->post_title ) ? $object->labels->archives : $menu_item->post_title;
 898                      $post_type_description = $object->description;
 899                  } else {
 900                      $post_type_description = '';
 901                      $menu_item->_invalid   = true;
 902                  }
 903  
 904                  $menu_item->type_label = __( 'Post Type Archive' );
 905                  $post_content          = wp_trim_words( $menu_item->post_content, 200 );
 906                  $post_type_description = ( '' === $post_content ) ? $post_type_description : $post_content;
 907                  $menu_item->url        = get_post_type_archive_link( $menu_item->object );
 908  
 909              } elseif ( 'taxonomy' === $menu_item->type ) {
 910                  $object = get_taxonomy( $menu_item->object );
 911                  if ( $object ) {
 912                      $menu_item->type_label = $object->labels->singular_name;
 913                  } else {
 914                      $menu_item->type_label = $menu_item->object;
 915                      $menu_item->_invalid   = true;
 916                  }
 917  
 918                  $original_object = get_term( (int) $menu_item->object_id, $menu_item->object );
 919  
 920                  if ( $original_object && ! is_wp_error( $original_object ) ) {
 921                      $menu_item->url = get_term_link( (int) $menu_item->object_id, $menu_item->object );
 922                      $original_title = $original_object->name;
 923                  } else {
 924                      $menu_item->url      = '';
 925                      $original_title      = '';
 926                      $menu_item->_invalid = true;
 927                  }
 928  
 929                  if ( '' === $original_title ) {
 930                      /* translators: %d: ID of a term. */
 931                      $original_title = sprintf( __( '#%d (no title)' ), $menu_item->object_id );
 932                  }
 933  
 934                  $menu_item->title = ( '' === $menu_item->post_title ) ? $original_title : $menu_item->post_title;
 935  
 936              } else {
 937                  $menu_item->type_label = __( 'Custom Link' );
 938                  $menu_item->title      = $menu_item->post_title;
 939                  $menu_item->url        = ! isset( $menu_item->url ) ? get_post_meta( $menu_item->ID, '_menu_item_url', true ) : $menu_item->url;
 940              }
 941  
 942              $menu_item->target = ! isset( $menu_item->target ) ? get_post_meta( $menu_item->ID, '_menu_item_target', true ) : $menu_item->target;
 943  
 944              /**
 945               * Filters a navigation menu item's title attribute.
 946               *
 947               * @since 3.0.0
 948               *
 949               * @param string $item_title The menu item title attribute.
 950               */
 951              $menu_item->attr_title = ! isset( $menu_item->attr_title ) ? apply_filters( 'nav_menu_attr_title', $menu_item->post_excerpt ) : $menu_item->attr_title;
 952  
 953              if ( ! isset( $menu_item->description ) ) {
 954                  /**
 955                   * Filters a navigation menu item's description.
 956                   *
 957                   * @since 3.0.0
 958                   *
 959                   * @param string $description The menu item description.
 960                   */
 961                  $menu_item->description = apply_filters( 'nav_menu_description', wp_trim_words( $menu_item->post_content, 200 ) );
 962              }
 963  
 964              $menu_item->classes = ! isset( $menu_item->classes ) ? (array) get_post_meta( $menu_item->ID, '_menu_item_classes', true ) : $menu_item->classes;
 965              $menu_item->xfn     = ! isset( $menu_item->xfn ) ? get_post_meta( $menu_item->ID, '_menu_item_xfn', true ) : $menu_item->xfn;
 966          } else {
 967              $menu_item->db_id            = 0;
 968              $menu_item->menu_item_parent = 0;
 969              $menu_item->object_id        = (int) $menu_item->ID;
 970              $menu_item->type             = 'post_type';
 971  
 972              $object                = get_post_type_object( $menu_item->post_type );
 973              $menu_item->object     = $object->name;
 974              $menu_item->type_label = $object->labels->singular_name;
 975  
 976              if ( '' === $menu_item->post_title ) {
 977                  /* translators: %d: ID of a post. */
 978                  $menu_item->post_title = sprintf( __( '#%d (no title)' ), $menu_item->ID );
 979              }
 980  
 981              $menu_item->title  = $menu_item->post_title;
 982              $menu_item->url    = get_permalink( $menu_item->ID );
 983              $menu_item->target = '';
 984  
 985              /** This filter is documented in wp-includes/nav-menu.php */
 986              $menu_item->attr_title = apply_filters( 'nav_menu_attr_title', '' );
 987  
 988              /** This filter is documented in wp-includes/nav-menu.php */
 989              $menu_item->description = apply_filters( 'nav_menu_description', '' );
 990              $menu_item->classes     = array();
 991              $menu_item->xfn         = '';
 992          }
 993      } elseif ( isset( $menu_item->taxonomy ) ) {
 994          $menu_item->ID               = $menu_item->term_id;
 995          $menu_item->db_id            = 0;
 996          $menu_item->menu_item_parent = 0;
 997          $menu_item->object_id        = (int) $menu_item->term_id;
 998          $menu_item->post_parent      = (int) $menu_item->parent;
 999          $menu_item->type             = 'taxonomy';
1000  
1001          $object                = get_taxonomy( $menu_item->taxonomy );
1002          $menu_item->object     = $object->name;
1003          $menu_item->type_label = $object->labels->singular_name;
1004  
1005          $menu_item->title       = $menu_item->name;
1006          $menu_item->url         = get_term_link( $menu_item, $menu_item->taxonomy );
1007          $menu_item->target      = '';
1008          $menu_item->attr_title  = '';
1009          $menu_item->description = get_term_field( 'description', $menu_item->term_id, $menu_item->taxonomy );
1010          $menu_item->classes     = array();
1011          $menu_item->xfn         = '';
1012  
1013      }
1014  
1015      /**
1016       * Filters a navigation menu item object.
1017       *
1018       * @since 3.0.0
1019       *
1020       * @param object $menu_item The menu item object.
1021       */
1022      return apply_filters( 'wp_setup_nav_menu_item', $menu_item );
1023  }
1024  
1025  /**
1026   * Returns the menu items associated with a particular object.
1027   *
1028   * @since 3.0.0
1029   *
1030   * @param int    $object_id   Optional. The ID of the original object. Default 0.
1031   * @param string $object_type Optional. The type of object, such as 'post_type' or 'taxonomy'.
1032   *                            Default 'post_type'.
1033   * @param string $taxonomy    Optional. If $object_type is 'taxonomy', $taxonomy is the name
1034   *                            of the tax that $object_id belongs to. Default empty.
1035   * @return int[] The array of menu item IDs; empty array if none.
1036   */
1037  function wp_get_associated_nav_menu_items( $object_id = 0, $object_type = 'post_type', $taxonomy = '' ) {
1038      $object_id     = (int) $object_id;
1039      $menu_item_ids = array();
1040  
1041      $query      = new WP_Query();
1042      $menu_items = $query->query(
1043          array(
1044              'meta_key'       => '_menu_item_object_id',
1045              'meta_value'     => $object_id,
1046              'post_status'    => 'any',
1047              'post_type'      => 'nav_menu_item',
1048              'posts_per_page' => -1,
1049          )
1050      );
1051      foreach ( (array) $menu_items as $menu_item ) {
1052          if ( isset( $menu_item->ID ) && is_nav_menu_item( $menu_item->ID ) ) {
1053              $menu_item_type = get_post_meta( $menu_item->ID, '_menu_item_type', true );
1054              if (
1055                  'post_type' === $object_type &&
1056                  'post_type' === $menu_item_type
1057              ) {
1058                  $menu_item_ids[] = (int) $menu_item->ID;
1059              } elseif (
1060                  'taxonomy' === $object_type &&
1061                  'taxonomy' === $menu_item_type &&
1062                  get_post_meta( $menu_item->ID, '_menu_item_object', true ) == $taxonomy
1063              ) {
1064                  $menu_item_ids[] = (int) $menu_item->ID;
1065              }
1066          }
1067      }
1068  
1069      return array_unique( $menu_item_ids );
1070  }
1071  
1072  /**
1073   * Callback for handling a menu item when its original object is deleted.
1074   *
1075   * @since 3.0.0
1076   * @access private
1077   *
1078   * @param int $object_id The ID of the original object being trashed.
1079   */
1080  function _wp_delete_post_menu_item( $object_id ) {
1081      $object_id = (int) $object_id;
1082  
1083      $menu_item_ids = wp_get_associated_nav_menu_items( $object_id, 'post_type' );
1084  
1085      foreach ( (array) $menu_item_ids as $menu_item_id ) {
1086          wp_delete_post( $menu_item_id, true );
1087      }
1088  }
1089  
1090  /**
1091   * Serves as a callback for handling a menu item when its original object is deleted.
1092   *
1093   * @since 3.0.0
1094   * @access private
1095   *
1096   * @param int    $object_id The ID of the original object being trashed.
1097   * @param int    $tt_id     Term taxonomy ID. Unused.
1098   * @param string $taxonomy  Taxonomy slug.
1099   */
1100  function _wp_delete_tax_menu_item( $object_id, $tt_id, $taxonomy ) {
1101      $object_id = (int) $object_id;
1102  
1103      $menu_item_ids = wp_get_associated_nav_menu_items( $object_id, 'taxonomy', $taxonomy );
1104  
1105      foreach ( (array) $menu_item_ids as $menu_item_id ) {
1106          wp_delete_post( $menu_item_id, true );
1107      }
1108  }
1109  
1110  /**
1111   * Automatically add newly published page objects to menus with that as an option.
1112   *
1113   * @since 3.0.0
1114   * @access private
1115   *
1116   * @param string  $new_status The new status of the post object.
1117   * @param string  $old_status The old status of the post object.
1118   * @param WP_Post $post       The post object being transitioned from one status to another.
1119   */
1120  function _wp_auto_add_pages_to_menu( $new_status, $old_status, $post ) {
1121      if ( 'publish' !== $new_status || 'publish' === $old_status || 'page' !== $post->post_type ) {
1122          return;
1123      }
1124      if ( ! empty( $post->post_parent ) ) {
1125          return;
1126      }
1127      $auto_add = get_option( 'nav_menu_options' );
1128      if ( empty( $auto_add ) || ! is_array( $auto_add ) || ! isset( $auto_add['auto_add'] ) ) {
1129          return;
1130      }
1131      $auto_add = $auto_add['auto_add'];
1132      if ( empty( $auto_add ) || ! is_array( $auto_add ) ) {
1133          return;
1134      }
1135  
1136      $args = array(
1137          'menu-item-object-id' => $post->ID,
1138          'menu-item-object'    => $post->post_type,
1139          'menu-item-type'      => 'post_type',
1140          'menu-item-status'    => 'publish',
1141      );
1142  
1143      foreach ( $auto_add as $menu_id ) {
1144          $items = wp_get_nav_menu_items( $menu_id, array( 'post_status' => 'publish,draft' ) );
1145          if ( ! is_array( $items ) ) {
1146              continue;
1147          }
1148          foreach ( $items as $item ) {
1149              if ( $post->ID == $item->object_id ) {
1150                  continue 2;
1151              }
1152          }
1153          wp_update_nav_menu_item( $menu_id, 0, $args );
1154      }
1155  }
1156  
1157  /**
1158   * Deletes auto-draft posts associated with the supplied changeset.
1159   *
1160   * @since 4.8.0
1161   * @access private
1162   *
1163   * @param int $post_id Post ID for the customize_changeset.
1164   */
1165  function _wp_delete_customize_changeset_dependent_auto_drafts( $post_id ) {
1166      $post = get_post( $post_id );
1167  
1168      if ( ! $post || 'customize_changeset' !== $post->post_type ) {
1169          return;
1170      }
1171  
1172      $data = json_decode( $post->post_content, true );
1173      if ( empty( $data['nav_menus_created_posts']['value'] ) ) {
1174          return;
1175      }
1176      remove_action( 'delete_post', '_wp_delete_customize_changeset_dependent_auto_drafts' );
1177      foreach ( $data['nav_menus_created_posts']['value'] as $stub_post_id ) {
1178          if ( empty( $stub_post_id ) ) {
1179              continue;
1180          }
1181          if ( 'auto-draft' === get_post_status( $stub_post_id ) ) {
1182              wp_delete_post( $stub_post_id, true );
1183          } elseif ( 'draft' === get_post_status( $stub_post_id ) ) {
1184              wp_trash_post( $stub_post_id );
1185              delete_post_meta( $stub_post_id, '_customize_changeset_uuid' );
1186          }
1187      }
1188      add_action( 'delete_post', '_wp_delete_customize_changeset_dependent_auto_drafts' );
1189  }
1190  
1191  /**
1192   * Handles menu config after theme change.
1193   *
1194   * @access private
1195   * @since 4.9.0
1196   */
1197  function _wp_menus_changed() {
1198      $old_nav_menu_locations    = get_option( 'theme_switch_menu_locations', array() );
1199      $new_nav_menu_locations    = get_nav_menu_locations();
1200      $mapped_nav_menu_locations = wp_map_nav_menu_locations( $new_nav_menu_locations, $old_nav_menu_locations );
1201  
1202      set_theme_mod( 'nav_menu_locations', $mapped_nav_menu_locations );
1203      delete_option( 'theme_switch_menu_locations' );
1204  }
1205  
1206  /**
1207   * Maps nav menu locations according to assignments in previously active theme.
1208   *
1209   * @since 4.9.0
1210   *
1211   * @param array $new_nav_menu_locations New nav menu locations assignments.
1212   * @param array $old_nav_menu_locations Old nav menu locations assignments.
1213   * @return array Nav menus mapped to new nav menu locations.
1214   */
1215  function wp_map_nav_menu_locations( $new_nav_menu_locations, $old_nav_menu_locations ) {
1216      $registered_nav_menus   = get_registered_nav_menus();
1217      $new_nav_menu_locations = array_intersect_key( $new_nav_menu_locations, $registered_nav_menus );
1218  
1219      // Short-circuit if there are no old nav menu location assignments to map.
1220      if ( empty( $old_nav_menu_locations ) ) {
1221          return $new_nav_menu_locations;
1222      }
1223  
1224      // If old and new theme have just one location, map it and we're done.
1225      if ( 1 === count( $old_nav_menu_locations ) && 1 === count( $registered_nav_menus ) ) {
1226          $new_nav_menu_locations[ key( $registered_nav_menus ) ] = array_pop( $old_nav_menu_locations );
1227          return $new_nav_menu_locations;
1228      }
1229  
1230      $old_locations = array_keys( $old_nav_menu_locations );
1231  
1232      // Map locations with the same slug.
1233      foreach ( $registered_nav_menus as $location => $name ) {
1234          if ( in_array( $location, $old_locations, true ) ) {
1235              $new_nav_menu_locations[ $location ] = $old_nav_menu_locations[ $location ];
1236              unset( $old_nav_menu_locations[ $location ] );
1237          }
1238      }
1239  
1240      // If there are no old nav menu locations left, then we're done.
1241      if ( empty( $old_nav_menu_locations ) ) {
1242          return $new_nav_menu_locations;
1243      }
1244  
1245      /*
1246       * If old and new theme both have locations that contain phrases
1247       * from within the same group, make an educated guess and map it.
1248       */
1249      $common_slug_groups = array(
1250          array( 'primary', 'menu-1', 'main', 'header', 'navigation', 'top' ),
1251          array( 'secondary', 'menu-2', 'footer', 'subsidiary', 'bottom' ),
1252          array( 'social' ),
1253      );
1254  
1255      // Go through each group...
1256      foreach ( $common_slug_groups as $slug_group ) {
1257  
1258          // ...and see if any of these slugs...
1259          foreach ( $slug_group as $slug ) {
1260  
1261              // ...and any of the new menu locations...
1262              foreach ( $registered_nav_menus as $new_location => $name ) {
1263  
1264                  // ...actually match!
1265                  if ( is_string( $new_location ) && false === stripos( $new_location, $slug ) && false === stripos( $slug, $new_location ) ) {
1266                      continue;
1267                  } elseif ( is_numeric( $new_location ) && $new_location !== $slug ) {
1268                      continue;
1269                  }
1270  
1271                  // Then see if any of the old locations...
1272                  foreach ( $old_nav_menu_locations as $location => $menu_id ) {
1273  
1274                      // ...and any slug in the same group...
1275                      foreach ( $slug_group as $slug ) {
1276  
1277                          // ... have a match as well.
1278                          if ( is_string( $location ) && false === stripos( $location, $slug ) && false === stripos( $slug, $location ) ) {
1279                              continue;
1280                          } elseif ( is_numeric( $location ) && $location !== $slug ) {
1281                              continue;
1282                          }
1283  
1284                          // Make sure this location wasn't mapped and removed previously.
1285                          if ( ! empty( $old_nav_menu_locations[ $location ] ) ) {
1286  
1287                              // We have a match that can be mapped!
1288                              $new_nav_menu_locations[ $new_location ] = $old_nav_menu_locations[ $location ];
1289  
1290                              // Remove the mapped location so it can't be mapped again.
1291                              unset( $old_nav_menu_locations[ $location ] );
1292  
1293                              // Go back and check the next new menu location.
1294                              continue 3;
1295                          }
1296                      } // End foreach ( $slug_group as $slug ).
1297                  } // End foreach ( $old_nav_menu_locations as $location => $menu_id ).
1298              } // End foreach foreach ( $registered_nav_menus as $new_location => $name ).
1299          } // End foreach ( $slug_group as $slug ).
1300      } // End foreach ( $common_slug_groups as $slug_group ).
1301  
1302      return $new_nav_menu_locations;
1303  }
1304  
1305  /**
1306   * Prevents menu items from being their own parent.
1307   *
1308   * Resets menu_item_parent to 0 when the parent is set to the item itself.
1309   * For use before saving `_menu_item_menu_item_parent` in nav-menus.php.
1310   *
1311   * @since 6.2.0
1312   * @access private
1313   *
1314   * @param array $menu_item_data The menu item data array.
1315   * @return array The menu item data with reset menu_item_parent.
1316   */
1317  function _wp_reset_invalid_menu_item_parent( $menu_item_data ) {
1318      if ( ! is_array( $menu_item_data ) ) {
1319          return $menu_item_data;
1320      }
1321  
1322      if (
1323          ! empty( $menu_item_data['ID'] ) &&
1324          ! empty( $menu_item_data['menu_item_parent'] ) &&
1325          (int) $menu_item_data['ID'] === (int) $menu_item_data['menu_item_parent']
1326      ) {
1327          $menu_item_data['menu_item_parent'] = 0;
1328      }
1329  
1330      return $menu_item_data;
1331  }


Generated : Wed Apr 24 08:20:01 2024 Cross-referenced by PHPXref