Ticket #14001: nav-menu.php.15288.2.patch
File nav-menu.php.15288.2.patch, 837 bytes (added by , 14 years ago) |
---|
-
wp-includes/nav-menu.php
78 78 $_wp_registered_nav_menus = array_merge( (array) $_wp_registered_nav_menus, $locations ); 79 79 } 80 80 81 81 82 /** 83 * Unregisters a navigation menu for a theme. 84 * 85 * @param array $location the menu location identifier 86 * 87 * @return bool true if location was unregistered 88 */ 89 function unregister_nav_menu( $location ) { 90 global $_wp_registered_nav_menus; 91 92 if (is_array($_wp_registered_nav_menus) && array_key_exists( $location, $_wp_registered_nav_menus ) ){ 93 unset( $_wp_registered_nav_menus[$location] ); 94 return true; 95 } 96 97 return false; 98 99 } 100 101 102 103 /** 82 104 * Register a navigation menu for a theme. 83 105 * 84 106 * @since 3.0.0