Created
May 30, 2014 15:19
-
-
Save krmd/e6fc0dccad480d50bc41 to your computer and use it in GitHub Desktop.
WooTheme Canvas: Remove Top or Primary Nav
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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