Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dospuntocero/ba90fb94f6222a6bf5d8be5cc2d7b58e to your computer and use it in GitHub Desktop.
Save dospuntocero/ba90fb94f6222a6bf5d8be5cc2d7b58e to your computer and use it in GitHub Desktop.
wordpress menu without container and ul tags. useful if you want to hardcode extra items outside wordpress (for example a login for an external system)
<?php
if (has_nav_menu('primary_navigation')) :
wp_nav_menu([
'theme_location' => 'primary_navigation',
'menu_class' => 'nav',
'items_wrap' => '%3$s',
'container' => false
]);
endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment