Skip to content

Instantly share code, notes, and snippets.

@milohuang
Created December 12, 2013 03:19
Show Gist options
  • Save milohuang/7922732 to your computer and use it in GitHub Desktop.
Save milohuang/7922732 to your computer and use it in GitHub Desktop.
Additional menu for Reverie 5.
<?php
wp_nav_menu( array(
'theme_location' => 'additional',
'container' => false,
'depth' => 0,
'items_wrap' => '<ul class="right">%3$s</ul>',
'walker' => new reverie_walker( array(
'in_top_bar' => true,
'item_type' => 'li',
'menu_type' => 'main-menu'
) ),
) );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment