Skip to content

Instantly share code, notes, and snippets.

@bohnna
Last active April 12, 2023 18:43
Show Gist options
  • Save bohnna/0edf12dd39cf8883234f to your computer and use it in GitHub Desktop.
Save bohnna/0edf12dd39cf8883234f to your computer and use it in GitHub Desktop.
(Wordpress) Remove UL from wp_nav_menu
<?php
$my_menu = array(
'menu' => 'main-menu',
'container' => '',
'items_wrap' => '%3$s'
);
wp_nav_menu( $my_menu );
/* Note: The default for items_wrap is <ul id=\"%1$s\" class=\"%2$s\">%3$s</ul>. */
?>
@bohnna
Copy link
Author

bohnna commented Sep 15, 2015

Note: The default for items_wrap is <ul id="%1$s" class="%2$s">%3$s.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment