Skip to content

Instantly share code, notes, and snippets.

@mattradford
Last active January 23, 2018 12:49
Show Gist options
  • Save mattradford/ee23d2041758a5bc9b15 to your computer and use it in GitHub Desktop.
Save mattradford/ee23d2041758a5bc9b15 to your computer and use it in GitHub Desktop.
Output menu with menu title
<?php
$menu = 'footer_primary_nav';
if (has_nav_menu($menu)) {
$locations = get_nav_menu_locations();
$menu_id = $locations[$menu] ;
$menu_object = wp_get_nav_menu_object($menu_id);
$menu_title = $menu_object->name;
// print_r($menu_object);
wp_nav_menu(array(
'theme_location' => $menu,
'depth'=> 1,
'items_wrap' => '<h4>'.$menu_title.'</h4><ul>%3$s</ul>'
));
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment