I really hope that you guys can figure this out.
I am currently building a site and as I create menus, and modify the items that populate them. The second menu is just ghosting the items from the first one.
No matter how many times I delete the menus and recreate them. I get the same thing.
Here is the php where I created the menus
// Default Menus: registers menus
add_theme_support ( 'genesis-menus' , array (
'primary' => 'Primary Navigation Menu' ,
'topmenu' => 'Top Navigation Menu' ) );
and here is the header.php where the menus are called:
<?php if ( is_page( 'Welcome' ) ) { ?><!-- Homepage header -->
<div id="wrap-header">
<div class="site-inner">
<?php wp_nav_menu( array('topmenu' => 'Top Navigation Menu' )); ?>
</div>
<div id="logo-site">
<a href="" alt="home"><img src="http://expressions-tattoos.com/wp-content/themes/expressions/images/ET_logo.png" alt="expressions-tattoos" /></a>
</div>
<?php wp_nav_menu( array('primary' => 'Primary Navigation Menu' )); ?>
</div>
Would appreciate any help. Pulling what little hair I have left out!!
S.