WordPress wp_nav_menu not showing nav

trying to add a footer menu to my footer in WordPress, The menu is saved inside the database and I’m copying the same code from the header which is working perfectly. I can’t see the error:

code is:

Read More
     <?php 
          if ( has_nav_menu( 'footer_nav' ) ) {
            wp_nav_menu( array('container' => '<ul>', 'menu' => 'Footer Menu', 'items_wrap'  => '<li>%1$s</li>' )); 

          }
            ?>

any help would be great

Related posts

Leave a Reply

1 comment

  1. You have to give the theme_location for footer_nav,

    wp_nav_menu( array( 'theme_location'=>'footer_nav', 
                        'container' => '<ul>', 
                        'menu' => 'Footer Menu', 
                        'items_wrap'  => '<li>%1$s</li>' ));