Skip to content

Instantly share code, notes, and snippets.

@AlphaGit
Created March 13, 2013 03:26
Show Gist options
  • Save AlphaGit/5149170 to your computer and use it in GitHub Desktop.
Save AlphaGit/5149170 to your computer and use it in GitHub Desktop.
<?php
if (has_nav_menu('footer-menu')) {
?>
<nav>
<?php
wp_nav_menu(array(
'theme_location' => 'footer-menu',
'container' => false,
'menu_id' => 'dockMenu',
'depth' => 1,
'walker' => new AlphasManifestoNavMenuWalker
)
);
?>
</nav>
<?php
}
?>
<?php wp_footer(); ?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment