Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- global $post;
- $CurrentDate = date('Y-m-d');
- $events_today = tribe_get_events(
- array(
- 'start_date'=>$CurrentDate,
- 'end_date'=>$CurrentDate,
- 'tax_query'=> array(
- array(
- 'taxonomy' => 'tribe_events_cat',
- 'field' => 'id',
- 'terms' => '102',
- 'operator' => 'NOT IN'
- )
- )
- )
- );
- foreach($events_today as $post) {
- setup_postdata($post);
- ?>
- <?php if ( has_post_thumbnail() ) { ?>
- <div class="thumbList">
- <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail('thumbnail', array('class' => 'scale-with-grid attachment-thumbnail')); ?></a>
- </div>
- <div class="event-excerpt">
- <h6 class="event-title"><span class="front-start-time"><?php echo tribe_get_start_date( $post->ID, false, 'g:i a' ); ?> </span><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h6>
- <?php the_excerpt(); ?>
- </div>
- <div class="clear"></div>
- <?php } else { ?>
- <div class="event-content">
- <?php the_excerpt(); ?>
- </div>
- <div class="clear"></div>
- <?php } ?>
- <?php } //endforeach ?>
- <?php wp_reset_query(); ?>
Advertisement
Add Comment
Please, Sign In to add comment