wp_nav_menu title
It’s easy to add a menu to your WordPress theme. It’s also easy to add the menu title.. You just got to know it 😉
// Add menu title to the template
echo "<h2>" . wp_get_nav_menu_name('nav-menu') . "</h2>";
// Add menu to the template
wp_nav_menu(
array('theme_location' => 'nav-menu')
);