Skip to content

Instantly share code, notes, and snippets.

@nickdavis
Last active March 14, 2018 21:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nickdavis/aa2cf126384a3550940767688b8f8959 to your computer and use it in GitHub Desktop.
Save nickdavis/aa2cf126384a3550940767688b8f8959 to your computer and use it in GitHub Desktop.
Render a WordPress menu without the container
<?php
if ( has_nav_menu( 'footer-1' ) ) {
wp_nav_menu( array(
'theme_location' => 'footer-1',
'container' => '',
'menu_class' => 'footer_links', // You may want to add a particular CSS class to make it easier to identify
) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment