Hello I am working on a theme. I use local flywheel to run it locally. I created a new local site and just renamed it. I then copied the app/sql and app/public folder to this *new* local site. Problem is my wp\_nav\_menu in the new folder is still generating a container for some reason, even though thats not the case in the older version. **This is causing the menu to come out in a column instead of a row.** Any ideas?
Here is my code for the menu in my header.php file
<?php
wp_nav_menu(
array(
‘menu’ => ‘Menu name here’ ,
‘theme_location’ => ‘header-menu’,
‘container’ => false,
‘menu_class’ => ‘site-nav-list’,
)
);
?>
​
[Old header that I want])​
​
[What is happening?]) [ad_2]