wpseek.com
A WordPress-centric search engine for devs and theme authors
has_nav_menu › WordPress Function
Since3.0.0
Deprecatedn/a
› has_nav_menu ( $location )
| Parameters: |
|
| Returns: |
|
| Defined at: |
|
| Codex: |
Determines whether a registered nav menu location has a menu assigned to it.
Related Functions: is_nav_menu, wp_nav_menu, is_nav_menu_item, register_nav_menu, register_nav_menus
Source
function has_nav_menu( $location ) {
$has_nav_menu = false;
$registered_nav_menus = get_registered_nav_menus();
if ( isset( $registered_nav_menus[ $location ] ) ) {
$locations = get_nav_menu_locations();
$has_nav_menu = ! empty( $locations[ $location ] );
}
/**
* Filters whether a nav menu is assigned to the specified location.
*
* @since 4.3.0
*
* @param bool $has_nav_menu Whether there is a menu assigned to a location.
* @param string $location Menu location.
*/
return apply_filters( 'has_nav_menu', $has_nav_menu, $location );
}