display event categories in sidebar

Home Forums Calendar Products Events Calendar PRO display event categories in sidebar

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #969675
    thomas
    Participant

    hi, i have a sidebar template for the calendar view.

    how can i display all event categories sorted by menu in the template?

    #969680
    thomas
    Participant

    this is working fine and lets me sort the categories with the simple custom post type plugin:

    <?php  $terms = get_terms( TribeEvents::TAXONOMY, array( 'orderby' => 'menu_order' ) );
    foreach ( $terms as $term ) {
    echo '<li><a href="'. get_term_link($term->slug, 'tribe_events_cat') .'" >' . $term->name . '</a></li>';
    }?>
    #969766
    Brian
    Keymaster

    I am glad to see you were able to figure it out.

    I am going to go ahead and close this ticket. If you have a similar issue or another in the future, please do not hesitate to create a new ticket.

    Thanks!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘display event categories in sidebar’ is closed to new replies.