Definition:
function has_nav_menu( $location ) {}
Whether a registered nav menu location has a menu assigned to it.
Parameters
- string $location: Menu location identifier.
Return values
returns:Whether location has a menu.
Source code
function has_nav_menu( $location ) {
$locations = get_nav_menu_locations();
return ( ! empty( $locations[ $location ] ) );
}
1935

February 12, 2011 


No comments yet... Be the first to leave a reply!