Definition:
function unregister_nav_menu( $location ) {}
Unregisters a navigation menu for a theme.
Parameters
- array $location: the menu location identifier
Return values
returns:True on success, false on failure.
Source code
function unregister_nav_menu( $location ) { global $_wp_registered_nav_menus; if ( is_array( $_wp_registered_nav_menus ) && isset( $_wp_registered_nav_menus[$location] ) ) { unset( $_wp_registered_nav_menus[$location] ); return true; } return false; }
3133
No comments yet... Be the first to leave a reply!