Skip to content

Instantly share code, notes, and snippets.

@tjhole
Created February 21, 2014 16:21
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 tjhole/9137329 to your computer and use it in GitHub Desktop.
Save tjhole/9137329 to your computer and use it in GitHub Desktop.
WORDPRESS: Full Menu
<?php
$defaults = array(
'theme_location' => '',
'menu' => '',
'container' => 'div',
'container_class' => '',
'container_id' => '',
'menu_class' => 'menu',
'menu_id' => '',
'echo' => true,
'fallback_cb' => 'wp_page_menu',
'before' => '',
'after' => '',
'link_before' => '',
'link_after' => '',
'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',
'depth' => 0,
'walker' => ''
);
wp_nav_menu( $defaults );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment