Changeset 41008 for trunk/src/wp-includes/nav-menu-template.php
- Timestamp:
- 07/05/2017 09:30:30 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/nav-menu-template.php
r40969 r41008 395 395 $classes[] = 'current-menu-item'; 396 396 $menu_items[$key]->current = true; 397 $_anc_id = (int) $menu_item->db_id; 398 399 while( 400 ( $_anc_id = get_post_meta( $_anc_id, '_menu_item_menu_item_parent', true ) ) && 401 ! in_array( $_anc_id, $active_ancestor_item_ids ) 402 ) { 403 $active_ancestor_item_ids[] = $_anc_id; 404 } 405 406 $active_parent_item_ids[] = (int) $menu_item->menu_item_parent; 407 397 408 // if the menu item corresponds to the currently-requested URL 398 409 } elseif ( 'custom' == $menu_item->object && isset( $_SERVER['HTTP_HOST'] ) ) {
Note: See TracChangeset
for help on using the changeset viewer.