Skip to content

Instantly share code, notes, and snippets.

@rodica-andronache
Created October 14, 2013 13:34
Show Gist options
  • Select an option

  • Save rodica-andronache/6975706 to your computer and use it in GitHub Desktop.

Select an option

Save rodica-andronache/6975706 to your computer and use it in GitHub Desktop.
WORDPRESS - Get menu name
In fucntions.php:
function cwp_get_menu_by_location( $location ) {
if( empty($location) ) return false;
$locations = get_nav_menu_locations();
if( ! isset( $locations[$location] ) ) return false;
$menu_obj = get_term( $locations[$location], 'nav_menu' );
return $menu_obj;
}
Unde vreau sa folosesc:
$menu_obj = cwp_get_menu_by_location('primary');
echo esc_html($menu_obj->name);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment