mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 17:18:32 +01:00
Avoid a PHP notice on Edit Menus screen when a menu is attached to a non-existing location.
props nofearinc. fixes #26287. Built from https://develop.svn.wordpress.org/trunk@26634 git-svn-id: http://core.svn.wordpress.org/trunk@26524 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
21c732c9b7
commit
cac815c4e9
@ -630,8 +630,10 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
||||
if ( ! empty( $menu_locations ) && in_array( $_nav_menu->term_id, $menu_locations ) ) {
|
||||
$locations_assigned_to_this_menu = array();
|
||||
foreach ( array_keys( $menu_locations, $_nav_menu->term_id ) as $menu_location_key ) {
|
||||
if ( isset( $locations[ $menu_location_key ] ) ) {
|
||||
$locations_assigned_to_this_menu[] = $locations[ $menu_location_key ];
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Filter the number of locations listed per menu in the drop-down select.
|
||||
@ -643,11 +645,13 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
||||
$assigned_locations = array_slice( $locations_assigned_to_this_menu, 0, absint( apply_filters( 'wp_nav_locations_listed_per_menu', 3 ) ) );
|
||||
|
||||
// Adds ellipses following the number of locations defined in $assigned_locations
|
||||
if ( ! empty( $assigned_locations ) ) {
|
||||
printf( ' (%1$s%2$s)',
|
||||
implode( ', ', $assigned_locations ),
|
||||
count( $locations_assigned_to_this_menu ) > count( $assigned_locations ) ? ' …' : ''
|
||||
);
|
||||
}
|
||||
}
|
||||
?>
|
||||
</option>
|
||||
<?php endforeach; ?>
|
||||
|
Loading…
Reference in New Issue
Block a user