Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * The TEC template for a list of events. This includes the Past Events and Upcoming Events views
- * as well as those same views filtered to a specific category.
- *
- * You can customize this view by putting a replacement file of the same name (list.php) in the events/ directory of your theme.
- */
- // Don't load directly
- if ( !defined('ABSPATH') ) { die('-1'); }
- ?>
- <div id="tribe-events-content" class="upcoming">
- <div id="tribe-events-loop" class="tribe-events-events post-list clearfix">
- <?php if (have_posts()) : ?>
- <?php $hasPosts = true; $first = true; ?>
- <?php while ( have_posts() ) : the_post(); ?>
- <?php global $more; $more = false; ?>
- <?php echo 'ID:' . get_the_ID(); ?>
- <?php echo 'POST ID:' . $post->ID; ?>
- <?php endwhile;// posts ?>
- <?php else :?>
- <?php endif; ?>
- </div><!-- #tribe-events-loop -->
- </div>
Advertisement
Add Comment
Please, Sign In to add comment