How do I change the default wordpress navigation header that comes with my theme?
Assuming the theme is using wp_nav_menu You should be able to find where the menu is being pulled in (most likely your header). The line you are looking for is going to look something like this <?php wp_nav_menu( array(‘menu’ => ‘Project Nav’ )); ?> Once you find it create a child theme then either remove … Read more