Last active
November 5, 2015 13:51
-
-
Save cjkoepke/66ad0b38793b76197a9b to your computer and use it in GitHub Desktop.
Reposition the Primary Navigation to be right after the body tag. http://www.calvinkoepke.com/add-a-mobile-friendly-off-canvas-menu-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
<?php | |
//* Do NOT include the opening PHP tag | |
/** | |
* Reposition the Primary navigation at the top of the DOM. | |
* @author Calvin Koepke | |
* @link http://www.calvinkoepke.com/add-a-mobile-friendly-off-canvas-menu-in-genesis | |
*/ | |
remove_action( 'genesis_after_header', 'genesis_do_nav' ); | |
add_action( 'genesis_before', 'genesis_do_nav', 1 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment