Appearance -> Menus doesn’t show

Please add following code into your theme functions.php file

function pietergoosen_theme_setup() {
  register_nav_menus( array( 
    'header' => 'Header menu', 
    'footer' => 'Footer menu' 
  ) );
 }

add_action( 'after_setup_theme', 'pietergoosen_theme_setup' );

Please check at your end and let me know if any query.

Hope it will help you.

File not found.