Skip to content

Instantly share code, notes, and snippets.

@rhcarlosweb
Created February 13, 2019 19:44
Show Gist options
  • Save rhcarlosweb/809d28178b363db95c2aece504f6d1e5 to your computer and use it in GitHub Desktop.
Save rhcarlosweb/809d28178b363db95c2aece504f6d1e5 to your computer and use it in GitHub Desktop.
Get wordpress menu name
<?php
/**
* Get Menu id
*
* @param $name_location
*
* @return
*/
function nexo_menu_title( $name_location = '' ) {
if ( has_nav_menu( $name_location ) ) :
$locations = get_nav_menu_locations();
$id = $locations[ $name_location ];
$menu_obj = wp_get_nav_menu_object( $id );
$menu_name = $menu_obj->name;
return $menu_name;
else:
return false;
endif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment