Skip to content

Instantly share code, notes, and snippets.

@yuriitaran
Last active November 15, 2017 08:35
Show Gist options
  • Save yuriitaran/38b37d17f70114ad6c22026822015f5c to your computer and use it in GitHub Desktop.
Save yuriitaran/38b37d17f70114ad6c22026822015f5c to your computer and use it in GitHub Desktop.
<?php
$menu_location = 'main-menu';
$menu_locations = get_nav_menu_locations();
$menu_object = (isset($menu_locations[$menu_location]) ? wp_get_nav_menu_object($menu_locations[$menu_location]) : null);
$menu_name = (isset($menu_object->name) ? $menu_object->name : '');
echo esc_html($menu_name);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment