Viewing 2 replies - 1 through 2 (of 2 total)
  • Ditto! I’d like to do this too.

    -kh

    Thread Starter mogito

    (@mogito)

    Hey kmehart. I figured out how to do this actually with the available template tags.

    Just open up the template that you are using for the page and use this within the loop after <?php the_content(); ?>

    <?php
    global $post;
    $all_events = tribe_get_events(array(
    'eventDisplay'=>'all',
    'posts_per_page'=>-1
    ));
    
    foreach($all_events as $post) {
    setup_postdata($post);
    ?>
    
    <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
    
    <div class="event-excerpt">
    <?php the_excerpt(); ?>
    </div>
    
    <?php echo tribe_event_format_date( false, 'D. M j, Y' ); ?>
    
    <?php } //endforeach ?>
    
    <?php wp_reset_query(); ?>

    Hope it helps you

    Mogito

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Events Calendar] List of events under calander.’ is closed to new replies.