Created
July 9, 2018 12:34
-
-
Save vicskf/fc80faa02c8a605f51e88b8aa43c3481 to your computer and use it in GitHub Desktop.
TEC > Creates a menu location for the main events template
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
<?php | |
function register_my_menu() { | |
register_nav_menu( 'main-events', __( 'Main Events Categories' ) ); | |
} | |
add_action( 'init', 'register_my_menu' ); | |
add_action( 'tribe_events_before_template', 'main_events_custom_menu' ); | |
function main_events_custom_menu () { | |
wp_nav_menu( array( 'theme_location' => 'main-events' ) ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment