Retrieves all registered navigation menu locations in a theme.
Source
function get_registered_nav_menus() {
global $_wp_registered_nav_menus;
if ( isset( $_wp_registered_nav_menus ) ) {
return $_wp_registered_nav_menus;
}
return array();
}
Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |
Display a simple list of the menus
I think this should say “Returns an array of all registered navigation menus in active theme”, as current wording sounds like you can use this function on other themes (which is what I’m currently looking for)
Sample return value: