Created
May 1, 2013 13:28
-
-
Save jcsrb/5495281 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*-----------------------------------------------------------------------------------*/ | |
/* 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