Skip to content

Instantly share code, notes, and snippets.

@benweiser
Created June 23, 2015 04:26
Show Gist options
  • Select an option

  • Save benweiser/cb53bebecf156b634698 to your computer and use it in GitHub Desktop.

Select an option

Save benweiser/cb53bebecf156b634698 to your computer and use it in GitHub Desktop.
Move the navigation and sub-navigation in Genesis
// Move primary navigation
remove_action( 'genesis_after_header', 'genesis_do_nav' );
add_action( 'genesis_before_header', 'genesis_do_nav' );
// Move sub navigation
remove_action( 'genesis_after_header', 'genesis_do_subnav' );
add_action( 'genesis_before_header', 'genesis_do_subnav' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment