Use get_nav_menu_locations() in wp_delete_nav_menu().
props nofearinc. see #25064. git-svn-id: https://develop.svn.wordpress.org/trunk@25196 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
a86a9f671d
commit
d25d2a812b
@ -190,8 +190,8 @@ function wp_delete_nav_menu( $menu ) {
|
||||
$result = wp_delete_term( $menu->term_id, 'nav_menu' );
|
||||
|
||||
// Remove this menu from any locations.
|
||||
$locations = get_theme_mod( 'nav_menu_locations' );
|
||||
foreach ( (array) $locations as $location => $menu_id ) {
|
||||
$locations = get_nav_menu_locations();
|
||||
foreach ( $locations as $location => $menu_id ) {
|
||||
if ( $menu_id == $menu->term_id )
|
||||
$locations[ $location ] = 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user