Ticket #14001: nav-menu.php.15288.patch
File nav-menu.php.15288.patch, 702 bytes (added by , 15 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 function unregister_nav_menu( $location ) { 88 global $_wp_registered_nav_menus; 89 90 if (array_key_exists( $location, $_wp_registered_nav_menus ) ) 91 unset( $_wp_registered_nav_menus[$location] ); 92 } 93 94 95 96 /** 82 97 * Register a navigation menu for a theme. 83 98 * 84 99 * @since 3.0.0