diff -r 3d4e9c994f10 -r a86126ab1dd4 wp/wp-admin/nav-menus.php --- a/wp/wp-admin/nav-menus.php Tue Oct 22 16:11:46 2019 +0200 +++ b/wp/wp-admin/nav-menus.php Tue Dec 15 13:49:49 2020 +0100 @@ -10,16 +10,16 @@ */ /** Load WordPress Administration Bootstrap */ -require_once( dirname( __FILE__ ) . '/admin.php' ); +require_once __DIR__ . '/admin.php'; -// Load all the nav menu interface functions -require_once( ABSPATH . 'wp-admin/includes/nav-menu.php' ); +// Load all the nav menu interface functions. +require_once ABSPATH . 'wp-admin/includes/nav-menu.php'; if ( ! current_theme_supports( 'menus' ) && ! current_theme_supports( 'widgets' ) ) { wp_die( __( 'Your theme does not support navigation menus or widgets.' ) ); } -// Permissions Check +// Permissions check. if ( ! current_user_can( 'edit_theme_options' ) ) { wp_die( '

' . __( 'You need a higher level of permission.' ) . '

' . @@ -34,21 +34,21 @@ wp_enqueue_script( 'jquery-touch-punch' ); } -// Container for any messages displayed to the user +// Container for any messages displayed to the user. $messages = array(); -// Container that stores the name of the active menu +// Container that stores the name of the active menu. $nav_menu_selected_title = ''; -// The menu id of the current menu being edited +// The menu id of the current menu being edited. $nav_menu_selected_id = isset( $_REQUEST['menu'] ) ? (int) $_REQUEST['menu'] : 0; -// Get existing menu locations assignments +// Get existing menu locations assignments. $locations = get_registered_nav_menus(); $menu_locations = get_nav_menu_locations(); $num_locations = count( array_keys( $locations ) ); -// Allowed actions: add, update, delete +// Allowed actions: add, update, delete. $action = isset( $_REQUEST['action'] ) ? $_REQUEST['action'] : 'edit'; /* @@ -60,18 +60,24 @@ switch ( $action ) { case 'add-menu-item': check_admin_referer( 'add-menu_item', 'menu-settings-column-nonce' ); + if ( isset( $_REQUEST['nav-menu-locations'] ) ) { set_theme_mod( 'nav_menu_locations', array_map( 'absint', $_REQUEST['menu-locations'] ) ); } elseif ( isset( $_REQUEST['menu-item'] ) ) { wp_save_nav_menu_items( $nav_menu_selected_id, $_REQUEST['menu-item'] ); } + break; + case 'move-down-menu-item': // Moving down a menu item is the same as moving up the next in order. check_admin_referer( 'move-menu_item' ); + $menu_item_id = isset( $_REQUEST['menu-item'] ) ? (int) $_REQUEST['menu-item'] : 0; + if ( is_nav_menu_item( $menu_item_id ) ) { $menus = isset( $_REQUEST['menu'] ) ? array( (int) $_REQUEST['menu'] ) : wp_get_object_terms( $menu_item_id, 'nav_menu', array( 'fields' => 'ids' ) ); + if ( ! is_wp_error( $menus ) && ! empty( $menus[0] ) ) { $menu_id = (int) $menus[0]; $ordered_menu_items = wp_get_nav_menu_items( $menu_id ); @@ -80,6 +86,7 @@ // Set up the data we need in one pass through the array of menu items. $dbids_to_orders = array(); $orders_to_dbids = array(); + foreach ( (array) $ordered_menu_items as $ordered_menu_item_object ) { if ( isset( $ordered_menu_item_object->ID ) ) { if ( isset( $ordered_menu_item_object->menu_order ) ) { @@ -90,22 +97,20 @@ } // Get next in order. - if ( - isset( $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] + 1 ] ) - ) { + if ( isset( $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] + 1 ] ) ) { $next_item_id = $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] + 1 ]; $next_item_data = (array) wp_setup_nav_menu_item( get_post( $next_item_id ) ); // If not siblings of same parent, bubble menu item up but keep order. - if ( - ! empty( $menu_item_data['menu_item_parent'] ) && - ( - empty( $next_item_data['menu_item_parent'] ) || - $next_item_data['menu_item_parent'] != $menu_item_data['menu_item_parent'] - ) + if ( ! empty( $menu_item_data['menu_item_parent'] ) + && ( empty( $next_item_data['menu_item_parent'] ) + || (int) $next_item_data['menu_item_parent'] !== (int) $menu_item_data['menu_item_parent'] ) ) { - - $parent_db_id = in_array( $menu_item_data['menu_item_parent'], $orders_to_dbids ) ? (int) $menu_item_data['menu_item_parent'] : 0; + if ( in_array( (int) $menu_item_data['menu_item_parent'], $orders_to_dbids, true ) ) { + $parent_db_id = (int) $menu_item_data['menu_item_parent']; + } else { + $parent_db_id = 0; + } $parent_object = wp_setup_nav_menu_item( get_post( $parent_db_id ) ); @@ -113,7 +118,6 @@ $parent_data = (array) $parent_object; $menu_item_data['menu_item_parent'] = $parent_data['menu_item_parent']; update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] ); - } // Make menu item a child of its next sibling. @@ -129,9 +133,8 @@ } // The item is last but still has a parent, so bubble up. - } elseif ( - ! empty( $menu_item_data['menu_item_parent'] ) && - in_array( $menu_item_data['menu_item_parent'], $orders_to_dbids ) + } elseif ( ! empty( $menu_item_data['menu_item_parent'] ) + && in_array( (int) $menu_item_data['menu_item_parent'], $orders_to_dbids, true ) ) { $menu_item_data['menu_item_parent'] = (int) get_post_meta( $menu_item_data['menu_item_parent'], '_menu_item_menu_item_parent', true ); update_post_meta( $menu_item_data['ID'], '_menu_item_menu_item_parent', (int) $menu_item_data['menu_item_parent'] ); @@ -140,11 +143,19 @@ } break; + case 'move-up-menu-item': check_admin_referer( 'move-menu_item' ); + $menu_item_id = isset( $_REQUEST['menu-item'] ) ? (int) $_REQUEST['menu-item'] : 0; + if ( is_nav_menu_item( $menu_item_id ) ) { - $menus = isset( $_REQUEST['menu'] ) ? array( (int) $_REQUEST['menu'] ) : wp_get_object_terms( $menu_item_id, 'nav_menu', array( 'fields' => 'ids' ) ); + if ( isset( $_REQUEST['menu'] ) ) { + $menus = array( (int) $_REQUEST['menu'] ); + } else { + $menus = wp_get_object_terms( $menu_item_id, 'nav_menu', array( 'fields' => 'ids' ) ); + } + if ( ! is_wp_error( $menus ) && ! empty( $menus[0] ) ) { $menu_id = (int) $menus[0]; $ordered_menu_items = wp_get_nav_menu_items( $menu_id ); @@ -153,6 +164,7 @@ // Set up the data we need in one pass through the array of menu items. $dbids_to_orders = array(); $orders_to_dbids = array(); + foreach ( (array) $ordered_menu_items as $ordered_menu_item_object ) { if ( isset( $ordered_menu_item_object->ID ) ) { if ( isset( $ordered_menu_item_object->menu_order ) ) { @@ -163,16 +175,22 @@ } // If this menu item is not first. - if ( ! empty( $dbids_to_orders[ $menu_item_id ] ) && ! empty( $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] ) ) { + if ( ! empty( $dbids_to_orders[ $menu_item_id ] ) + && ! empty( $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] ) + ) { // If this menu item is a child of the previous. - if ( - ! empty( $menu_item_data['menu_item_parent'] ) && - in_array( $menu_item_data['menu_item_parent'], array_keys( $dbids_to_orders ) ) && - isset( $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] ) && - ( $menu_item_data['menu_item_parent'] == $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] ) + if ( ! empty( $menu_item_data['menu_item_parent'] ) + && in_array( (int) $menu_item_data['menu_item_parent'], array_keys( $dbids_to_orders ), true ) + && isset( $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] ) + && ( (int) $menu_item_data['menu_item_parent'] === $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] ) ) { - $parent_db_id = in_array( $menu_item_data['menu_item_parent'], $orders_to_dbids ) ? (int) $menu_item_data['menu_item_parent'] : 0; + if ( in_array( (int) $menu_item_data['menu_item_parent'], $orders_to_dbids, true ) ) { + $parent_db_id = (int) $menu_item_data['menu_item_parent']; + } else { + $parent_db_id = 0; + } + $parent_object = wp_setup_nav_menu_item( get_post( $parent_db_id ) ); if ( ! is_wp_error( $parent_object ) ) { @@ -182,10 +200,9 @@ * If there is something before the parent and parent a child of it, * make menu item a child also of it. */ - if ( - ! empty( $dbids_to_orders[ $parent_db_id ] ) && - ! empty( $orders_to_dbids[ $dbids_to_orders[ $parent_db_id ] - 1 ] ) && - ! empty( $parent_data['menu_item_parent'] ) + if ( ! empty( $dbids_to_orders[ $parent_db_id ] ) + && ! empty( $orders_to_dbids[ $dbids_to_orders[ $parent_db_id ] - 1 ] ) + && ! empty( $parent_data['menu_item_parent'] ) ) { $menu_item_data['menu_item_parent'] = $parent_data['menu_item_parent']; @@ -193,12 +210,12 @@ * Else if there is something before parent and parent not a child of it, * make menu item a child of that something's parent */ - } elseif ( - ! empty( $dbids_to_orders[ $parent_db_id ] ) && - ! empty( $orders_to_dbids[ $dbids_to_orders[ $parent_db_id ] - 1 ] ) + } elseif ( ! empty( $dbids_to_orders[ $parent_db_id ] ) + && ! empty( $orders_to_dbids[ $dbids_to_orders[ $parent_db_id ] - 1 ] ) ) { $_possible_parent_id = (int) get_post_meta( $orders_to_dbids[ $dbids_to_orders[ $parent_db_id ] - 1 ], '_menu_item_menu_item_parent', true ); - if ( in_array( $_possible_parent_id, array_keys( $dbids_to_orders ) ) ) { + + if ( in_array( $_possible_parent_id, array_keys( $dbids_to_orders ), true ) ) { $menu_item_data['menu_item_parent'] = $_possible_parent_id; } else { $menu_item_data['menu_item_parent'] = 0; @@ -222,12 +239,11 @@ } // Else this menu item is not a child of the previous. - } elseif ( - empty( $menu_item_data['menu_order'] ) || - empty( $menu_item_data['menu_item_parent'] ) || - ! in_array( $menu_item_data['menu_item_parent'], array_keys( $dbids_to_orders ) ) || - empty( $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] ) || - $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] != $menu_item_data['menu_item_parent'] + } elseif ( empty( $menu_item_data['menu_order'] ) + || empty( $menu_item_data['menu_item_parent'] ) + || ! in_array( (int) $menu_item_data['menu_item_parent'], array_keys( $dbids_to_orders ), true ) + || empty( $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] ) + || $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ] !== (int) $menu_item_data['menu_item_parent'] ) { // Just make it a child of the previous; keep the order. $menu_item_data['menu_item_parent'] = (int) $orders_to_dbids[ $dbids_to_orders[ $menu_item_id ] - 1 ]; @@ -237,6 +253,7 @@ } } } + break; case 'delete-menu-item': @@ -247,10 +264,12 @@ if ( is_nav_menu_item( $menu_item_id ) && wp_delete_post( $menu_item_id, true ) ) { $messages[] = '

' . __( 'The menu item has been successfully deleted.' ) . '

'; } + break; case 'delete': check_admin_referer( 'delete-nav_menu-' . $nav_menu_selected_id ); + if ( is_nav_menu( $nav_menu_selected_id ) ) { $deletion = wp_delete_nav_menu( $nav_menu_selected_id ); } else { @@ -268,16 +287,19 @@ } else { $messages[] = '

' . __( 'The menu has been successfully deleted.' ) . '

'; } + break; case 'delete_menus': check_admin_referer( 'nav_menus_bulk_actions' ); + foreach ( $_REQUEST['delete_menus'] as $menu_id_to_delete ) { if ( ! is_nav_menu( $menu_id_to_delete ) ) { continue; } $deletion = wp_delete_nav_menu( $menu_id_to_delete ); + if ( is_wp_error( $deletion ) ) { $messages[] = '

' . $deletion->get_error_message() . '

'; $deletion_error = true; @@ -287,29 +309,20 @@ if ( empty( $deletion_error ) ) { $messages[] = '

' . __( 'Selected menus have been successfully deleted.' ) . '

'; } + break; case 'update': check_admin_referer( 'update-nav_menu', 'update-nav-menu-nonce' ); - // Remove menu locations that have been unchecked. - foreach ( $locations as $location => $description ) { - if ( ( empty( $_POST['menu-locations'] ) || empty( $_POST['menu-locations'][ $location ] ) ) && isset( $menu_locations[ $location ] ) && $menu_locations[ $location ] == $nav_menu_selected_id ) { - unset( $menu_locations[ $location ] ); - } - } - // Merge new and existing menu locations if any new ones are set. if ( isset( $_POST['menu-locations'] ) ) { $new_menu_locations = array_map( 'absint', $_POST['menu-locations'] ); $menu_locations = array_merge( $menu_locations, $new_menu_locations ); } - // Set menu locations. - set_theme_mod( 'nav_menu_locations', $menu_locations ); - // Add Menu. - if ( 0 == $nav_menu_selected_id ) { + if ( 0 === $nav_menu_selected_id ) { $new_menu_title = trim( esc_html( $_POST['menu-name'] ) ); if ( $new_menu_title ) { @@ -321,32 +334,50 @@ $_menu_object = wp_get_nav_menu_object( $_nav_menu_selected_id ); $nav_menu_selected_id = $_nav_menu_selected_id; $nav_menu_selected_title = $_menu_object->name; + if ( isset( $_REQUEST['menu-item'] ) ) { wp_save_nav_menu_items( $nav_menu_selected_id, absint( $_REQUEST['menu-item'] ) ); } - if ( isset( $_REQUEST['zero-menu-state'] ) ) { - // If there are menu items, add them + + // Set the menu_location value correctly for the newly created menu. + foreach ( $menu_locations as $location => $id ) { + if ( 0 === $id ) { + $menu_locations[ $location ] = $nav_menu_selected_id; + } + } + + set_theme_mod( 'nav_menu_locations', $menu_locations ); + + if ( isset( $_REQUEST['zero-menu-state'] ) || ! empty( $_POST['auto-add-pages'] ) ) { + // If there are menu items, add them. wp_nav_menu_update_menu_items( $nav_menu_selected_id, $nav_menu_selected_title ); - // Auto-save nav_menu_locations + } + + if ( isset( $_REQUEST['zero-menu-state'] ) ) { + // Auto-save nav_menu_locations. $locations = get_nav_menu_locations(); + foreach ( $locations as $location => $menu_id ) { $locations[ $location ] = $nav_menu_selected_id; - break; // There should only be 1 + break; // There should only be 1. } + set_theme_mod( 'nav_menu_locations', $locations ); } + if ( isset( $_REQUEST['use-location'] ) ) { $locations = get_registered_nav_menus(); $menu_locations = get_nav_menu_locations(); + if ( isset( $locations[ $_REQUEST['use-location'] ] ) ) { $menu_locations[ $_REQUEST['use-location'] ] = $nav_menu_selected_id; } + set_theme_mod( 'nav_menu_locations', $menu_locations ); } - // $messages[] = '

' . sprintf( __( '%s has been created.' ), $nav_menu_selected_title ) . '

'; wp_redirect( admin_url( 'nav-menus.php?menu=' . $_nav_menu_selected_id ) ); - exit(); + exit; } } else { $messages[] = '

' . __( 'Please enter a valid menu name.' ) . '

'; @@ -354,10 +385,22 @@ // Update existing menu. } else { + // Remove menu locations that have been unchecked. + foreach ( $locations as $location => $description ) { + if ( ( empty( $_POST['menu-locations'] ) || empty( $_POST['menu-locations'][ $location ] ) ) + && isset( $menu_locations[ $location ] ) && $menu_locations[ $location ] === $nav_menu_selected_id + ) { + unset( $menu_locations[ $location ] ); + } + } + + // Set menu locations. + set_theme_mod( 'nav_menu_locations', $menu_locations ); $_menu_object = wp_get_nav_menu_object( $nav_menu_selected_id ); $menu_title = trim( esc_html( $_POST['menu-name'] ) ); + if ( ! $menu_title ) { $messages[] = '

' . __( 'Please enter a valid menu name.' ) . '

'; $menu_title = $_menu_object->name; @@ -365,6 +408,7 @@ if ( ! is_wp_error( $_menu_object ) ) { $_nav_menu_selected_id = wp_update_nav_menu_object( $nav_menu_selected_id, array( 'menu-name' => $menu_title ) ); + if ( is_wp_error( $_nav_menu_selected_id ) ) { $_menu_object = $_nav_menu_selected_id; $messages[] = '

' . $_nav_menu_selected_id->get_error_message() . '

'; @@ -379,17 +423,19 @@ $messages = array_merge( $messages, wp_nav_menu_update_menu_items( $_nav_menu_selected_id, $nav_menu_selected_title ) ); // If the menu ID changed, redirect to the new URL. - if ( $nav_menu_selected_id != $_nav_menu_selected_id ) { + if ( $nav_menu_selected_id !== $_nav_menu_selected_id ) { wp_redirect( admin_url( 'nav-menus.php?menu=' . intval( $_nav_menu_selected_id ) ) ); - exit(); + exit; } } } + break; + case 'locations': if ( ! $num_locations ) { wp_redirect( admin_url( 'nav-menus.php' ) ); - exit(); + exit; } add_filter( 'screen_options_show_screen', '__return_false' ); @@ -399,11 +445,12 @@ $new_menu_locations = array_map( 'absint', $_POST['menu-locations'] ); $menu_locations = array_merge( $menu_locations, $new_menu_locations ); - // Set menu locations + // Set menu locations. set_theme_mod( 'nav_menu_locations', $menu_locations ); $messages[] = '

' . __( 'Menu locations updated.' ) . '

'; } + break; } @@ -412,33 +459,40 @@ $menu_count = count( $nav_menus ); // Are we on the add new screen? -$add_new_screen = ( isset( $_GET['menu'] ) && 0 == $_GET['menu'] ) ? true : false; +$add_new_screen = ( isset( $_GET['menu'] ) && 0 === (int) $_GET['menu'] ) ? true : false; -$locations_screen = ( isset( $_GET['action'] ) && 'locations' == $_GET['action'] ) ? true : false; +$locations_screen = ( isset( $_GET['action'] ) && 'locations' === $_GET['action'] ) ? true : false; + +$page_count = wp_count_posts( 'page' ); /* * If we have one theme location, and zero menus, we take them right * into editing their first menu. */ -$page_count = wp_count_posts( 'page' ); -$one_theme_location_no_menus = ( 1 == count( get_registered_nav_menus() ) && ! $add_new_screen && empty( $nav_menus ) && ! empty( $page_count->publish ) ) ? true : false; +if ( 1 === count( get_registered_nav_menus() ) && ! $add_new_screen + && empty( $nav_menus ) && ! empty( $page_count->publish ) +) { + $one_theme_location_no_menus = true; +} else { + $one_theme_location_no_menus = false; +} $nav_menus_l10n = array( 'oneThemeLocationNoMenus' => $one_theme_location_no_menus, 'moveUp' => __( 'Move up one' ), 'moveDown' => __( 'Move down one' ), 'moveToTop' => __( 'Move to the top' ), - /* translators: %s: previous item name */ + /* translators: %s: Previous item name. */ 'moveUnder' => __( 'Move under %s' ), - /* translators: %s: previous item name */ + /* translators: %s: Previous item name. */ 'moveOutFrom' => __( 'Move out from under %s' ), - /* translators: %s: previous item name */ + /* translators: %s: Previous item name. */ 'under' => __( 'Under %s' ), - /* translators: %s: previous item name */ + /* translators: %s: Previous item name. */ 'outFrom' => __( 'Out from under %s' ), - /* translators: 1: item name, 2: item position, 3: total number of items */ + /* translators: 1: Item name, 2: Item position, 3: Total number of items. */ 'menuFocus' => __( '%1$s. Menu item %2$d of %3$d.' ), - /* translators: 1: item name, 2: item position, 3: parent item name */ + /* translators: 1: Item name, 2: Item position, 3: Parent item name. */ 'subMenuFocus' => __( '%1$s. Sub item number %2$d under %3$s.' ), ); wp_localize_script( 'nav-menu', 'menus', $nav_menus_l10n ); @@ -447,7 +501,7 @@ * Redirect to add screen if there are no menus and this users has either zero, * or more than 1 theme locations. */ -if ( 0 == $menu_count && ! $add_new_screen && ! $one_theme_location_no_menus ) { +if ( 0 === $menu_count && ! $add_new_screen && ! $one_theme_location_no_menus ) { wp_redirect( admin_url( 'nav-menus.php?action=edit&menu=0' ) ); } @@ -463,7 +517,7 @@ } // On deletion of menu, if another menu exists, show it. -if ( ! $add_new_screen && 0 < $menu_count && isset( $_GET['action'] ) && 'delete' == $_GET['action'] ) { +if ( ! $add_new_screen && $menu_count > 0 && isset( $_GET['action'] ) && 'delete' === $_GET['action'] ) { $nav_menu_selected_id = $nav_menus[0]->term_id; } @@ -471,12 +525,12 @@ if ( $one_theme_location_no_menus ) { $nav_menu_selected_id = 0; } elseif ( empty( $nav_menu_selected_id ) && ! empty( $nav_menus ) && ! $add_new_screen ) { - // if we have no selection yet, and we have menus, set to the first one in the list. + // If we have no selection yet, and we have menus, set to the first one in the list. $nav_menu_selected_id = $nav_menus[0]->term_id; } // Update the user's setting. -if ( $nav_menu_selected_id != $recently_edited && is_nav_menu( $nav_menu_selected_id ) ) { +if ( $nav_menu_selected_id !== $recently_edited && is_nav_menu( $nav_menu_selected_id ) ) { update_user_meta( $current_user->ID, 'nav_menu_recently_edited', $nav_menu_selected_id ); } @@ -529,13 +583,22 @@ wp_initial_nav_menu_meta_boxes(); if ( ! current_theme_supports( 'menus' ) && ! $num_locations ) { - $messages[] = '

' . sprintf( __( 'Your theme does not natively support menus, but you can use them in sidebars by adding a “Navigation Menu” widget on the Widgets screen.' ), admin_url( 'widgets.php' ) ) . '

'; + $messages[] = '

' . sprintf( + /* translators: %s: URL to Widgets screen. */ + __( 'Your theme does not natively support menus, but you can use them in sidebars by adding a “Navigation Menu” widget on the Widgets screen.' ), + admin_url( 'widgets.php' ) + ) . '

'; } -if ( ! $locations_screen ) : // Main tab - $overview = '

' . __( 'This screen is used for managing your navigation menus.' ) . '

'; - /* translators: 1: Widgets admin screen URL, 2 and 3: The name of the default themes */ - $overview .= '

' . sprintf( __( 'Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the Widgets screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the Documentation link to the side.' ), admin_url( 'widgets.php' ), 'Twenty Seventeen', 'Twenty Nineteen' ) . '

'; +if ( ! $locations_screen ) : // Main tab. + $overview = '

' . __( 'This screen is used for managing your navigation menus.' ) . '

'; + $overview .= '

' . sprintf( + /* translators: 1: URL to Widgets screen, 2 and 3: The names of the default themes. */ + __( 'Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the Widgets screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the Documentation link to the side.' ), + admin_url( 'widgets.php' ), + 'Twenty Nineteen', + 'Twenty Twenty' + ) . '

'; $overview .= '

' . __( 'From this screen you can:' ) . '

'; $overview .= ''; @@ -575,7 +638,7 @@ 'content' => $editing_menus, ) ); -else : // Locations Tab. +else : // Locations tab. $locations_overview = '

' . __( 'This screen is used for globally assigning menus to locations defined by your theme.' ) . '

'; $locations_overview .= '