Skip to content

Instantly share code, notes, and snippets.

@awakekat
Created February 17, 2016 15:41
Show Gist options
  • Save awakekat/97f95ccdde50310e3f12 to your computer and use it in GitHub Desktop.
Save awakekat/97f95ccdde50310e3f12 to your computer and use it in GitHub Desktop.
Regular WP Menu with some parameters
<?php
$args = array(
'container' => 'ul',
'fallback_cb' => '',
'echo' => true,
'link_before' => '',
'link_after' => '',
'items_wrap' => '%3$s',
'theme_location' => 'primary',
);
wp_nav_menu($args); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment