Skip to content

Instantly share code, notes, and snippets.

@jcsrb
Created May 1, 2013 13:28
Show Gist options
  • Save jcsrb/5495281 to your computer and use it in GitHub Desktop.
Save jcsrb/5495281 to your computer and use it in GitHub Desktop.
/*-----------------------------------------------------------------------------------*/
/* Optionally load top navigation. */
/*-----------------------------------------------------------------------------------*/
if ( ! function_exists( 'woo_top_nav' ) ) {
function woo_top_nav () {
if ( function_exists( 'has_nav_menu' ) && has_nav_menu( 'top-menu' ) ) {
?>
<div id="top">
<nav class="col-full" role="navigation">
<?php wp_nav_menu( array( 'depth' => 6, 'sort_column' => 'menu_order', 'container' => 'ul', 'menu_id' => 'top-nav', 'menu_class' => 'nav', 'theme_location' => 'top-menu' ) ); ?>
</nav>
</div><!-- /#top -->
<?php
}
} // End woo_top_nav()
}
add_action( 'woo_header_before', 'woo_top_nav' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment