Skip to content

Instantly share code, notes, and snippets.

@vicskf
Created July 9, 2018 12:34
Show Gist options
  • Save vicskf/fc80faa02c8a605f51e88b8aa43c3481 to your computer and use it in GitHub Desktop.
Save vicskf/fc80faa02c8a605f51e88b8aa43c3481 to your computer and use it in GitHub Desktop.
TEC > Creates a menu location for the main events template
<?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