WordPress nav_menu items from another menu appearing

I am sure you went down this path already, but be sure register menus and support for theme:

register_nav_menus(
    array(
        'Main' => 'Main Navigation',
        'Secondary' => 'Secondary Menu'
    )
);

And then follow your pattern of 'theme_location' => 'Secondary' to print your registered menu back.