Skip to content

Instantly share code, notes, and snippets.

@rianrietveld
Created January 31, 2015 08:24
Show Gist options
  • Save rianrietveld/7424323f7477844e9d5e to your computer and use it in GitHub Desktop.
Save rianrietveld/7424323f7477844e9d5e to your computer and use it in GitHub Desktop.
Function for grabbing a WP nav menu theme location name
<?php
/**
* Function for grabbing a WP nav menu theme location name.
*
* @since 2.0.0
* @access public
* @param string $location
* @return string
*/
function gameaccess_get_menu_name( $location ) {
$locations = get_nav_menu_locations();
$menu_obj = get_term( $locations[$location], 'nav_menu' );
return $menu_obj->name;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment