Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php // code to show only one of each event
- $args = array(
- 'post_type' => 'tribe_events',
- 'showposts' => -1
- );
- // also tried query_posts( $args );
- $evs = new WP_Query( $args );
- ?>
- <?php if ($evs->have_posts()) : ?>
- <?php $hasPosts = true; $first = true; ?>
- <?php while ($evs->have_posts()) : $evs->the_post(); ?>
- <?php global $more; $more = false; ?>
- //loop stuff here
- <?php endwhile; ?>
Advertisement
Add Comment
Please, Sign In to add comment