Custom nav menu not showing

Maybe you are doing it wrong? Here’s a pointer…

In functions.php

// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
    'primary' => 'Primary Menu',
) );

In header.php (or elsewhere)

<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>