Skip to content

Instantly share code, notes, and snippets.

@tjhole
Created December 1, 2014 10:49
Show Gist options
  • Save tjhole/8efd1245cee87676c404 to your computer and use it in GitHub Desktop.
Save tjhole/8efd1245cee87676c404 to your computer and use it in GitHub Desktop.
WORDPRESS: 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