Skip to content

Instantly share code, notes, and snippets.

@krmd
Created May 30, 2014 15:19
Show Gist options
  • Save krmd/e6fc0dccad480d50bc41 to your computer and use it in GitHub Desktop.
Save krmd/e6fc0dccad480d50bc41 to your computer and use it in GitHub Desktop.
WooTheme Canvas: Remove Top or Primary Nav
add_action( 'init', 'remove_canvas_main_navigation', 10 );
function remove_canvas_main_navigation () {
// Remove main nav from the woo_header_after hook
remove_action( 'woo_header_after','woo_nav', 10 );
}
add_action( 'init', 'remove_canvas_top_navigation', 10 );
function remove_canvas_top_navigation () {
// Remove top nav from the woo_top hook
remove_action( 'woo_top', 'woo_top_navigation', 10 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment