Skip to content

Instantly share code, notes, and snippets.

@DanielSantoro
Created February 17, 2015 17:33
Show Gist options
  • Save DanielSantoro/969365cec807281387fc to your computer and use it in GitHub Desktop.
Save DanielSantoro/969365cec807281387fc to your computer and use it in GitHub Desktop.
Header Before #2
// Moves Main Navigation to the top of the header
add_action( 'wp', 'tweak_nav_layout' );
function tweak_nav_layout() {
remove_action( ‘woo_top’,’woo_top_navigation’, 10 );
add_action( ‘woo_header_after’,’woo_top_navigation’, 10 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment