Skip to content

Instantly share code, notes, and snippets.

@rickrduncan
Last active August 29, 2015 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rickrduncan/773844fbf4baa0b93427 to your computer and use it in GitHub Desktop.
Save rickrduncan/773844fbf4baa0b93427 to your computer and use it in GitHub Desktop.
Unregister header right widget and resposition genesis subnav
<?php
//* Do NOT include the opening php tag
//***************************************************************************************************
//** START: Unregister header right widget area. Reposition secondary navigation menu after header.
//* Unregister the header right widget area
unregister_sidebar( 'header-right' );
//* Reposition the secondary navigation menu
remove_action( 'genesis_after_header', 'genesis_do_subnav' );
add_action( 'genesis_header', 'genesis_do_subnav', 12 );
//** END: Unregister header right widget area. Reposition secondary navigation menu after header.
//***************************************************************************************************
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment