Created
January 16, 2014 17:33
-
-
Save srikat/8459511 to your computer and use it in GitHub Desktop.
Wrapping Primary and Secondary Navigation in custom divs in Genesis
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
//* Wrap .nav-primary in a custom div | |
add_filter( 'genesis_do_nav', 'genesis_child_nav', 10, 3 ); | |
function genesis_child_nav($nav_output, $nav, $args) { | |
return '<div class="nav-primary-wrapper">' . $nav_output . '</div>'; | |
} | |
//* Wrap .nav-secondary in a custom div | |
add_filter( 'genesis_do_subnav', 'genesis_child_subnav', 10, 3 ); | |
function genesis_child_subnav($subnav_output, $subnav, $args) { | |
return '<div class="nav-secondary-wrapper">' . $subnav_output . '</div>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment