Advertisement
jamiemarsland

Move menu to right of Logo

Jun 18th, 2013
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. add_action( 'init', 'woo_custom_move_navigation', 10 );
  2.  
  3. function woo_custom_move_navigation () {
  4. // Remove main nav from the woo_header_after hook
  5. remove_action( 'woo_header_after','woo_nav', 10 );
  6. // Add main nav to the woo_header_inside hook
  7. add_action( 'woo_header_inside','woo_nav', 10 );
  8. } // End woo_custom_move_navigation()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement