https://www.udemy.com/become-a-wordpress-developer-php-javascript/learn/v4/t/lecture/7233528?start=0
<?php
wp_nav_menu(array(
'theme_location' => 'headerMenuLocation'
));
?>
<?php
/**
* Register Nav Menu
*/
function university_features(){
register_nav_menu('headerMenuLocation','Header Menu Location');
}
add_action( 'after_setup_theme', 'university_features' );