Skip to content

Instantly share code, notes, and snippets.

@tomharrigan
Created January 13, 2013 16:31
Show Gist options
  • Select an option

  • Save tomharrigan/4524935 to your computer and use it in GitHub Desktop.

Select an option

Save tomharrigan/4524935 to your computer and use it in GitHub Desktop.
add_action( 'init', 'woo_custom_move_navigation', 10 );
function woo_custom_move_navigation () {
// Remove main nav from the woo_header_after hook
remove_action( 'woo_header_after','woo_nav', 10 );
// Add main nav to the woo_header_inside hook
add_action( 'woo_header_inside','woo_nav', 10 );
} // End woo_custom_move_navigation()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment