Register nav menu wordpress

<?php

/**
 * We need to add this code to our functions.php
 * */
 
 function theme_add_nav_menu() {
    register_nav_menu(
        'primary-menu', __("Primary menu, at the header")
    );
}

add_action('after_setup_theme', 'theme_add_nav_menu');