Created
September 14, 2013 15:31
-
-
Save ZellSnippets/6562952 to your computer and use it in GitHub Desktop.
PHP: Genesis reposition navigation
This file contains 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
// reposition navigation | |
remove_action( 'genesis_after_header', 'genesis_do_nav' ); | |
add_action( 'genesis_header', 'genesis_do_nav' ); | |
remove_action( 'genesis_after_header', 'genesis_do_subnav' ); | |
add_action( 'genesis_sidebar_alt', 'genesis_do_subnav' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment