Skip to content

Instantly share code, notes, and snippets.

@peterbinks
Created February 23, 2015 18:55
Show Gist options
  • Save peterbinks/51a379b5d23cec35b21b to your computer and use it in GitHub Desktop.
Save peterbinks/51a379b5d23cec35b21b to your computer and use it in GitHub Desktop.
<?php
global $post;
$get_posts = tribe_get_events(array('posts_per_page'=>-3,) );
foreach($get_posts 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-time">
<span class="front-start-time"><?php echo tribe_get_start_date( $post->ID, false, 'Y M j g:i a' ); ?> </span>
</div>
<div class="event-excerpt">
<h3 class="event-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<?php the_excerpt(); ?>
</div>
<div class="clear"></div>
<?php } else { ?>
<div class="event">
<div class="event-time">
<span class="front-start-time"><?php echo tribe_get_start_date( $post->ID, false, 'M j g:i a' ); ?> </span>
</div>
<h3 class="event-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<div class="event-content">
<?php the_content(); ?>
</div>
</div>
<div class="clear"></div>
<?php } ?>
<?php } //endforeach ?>
<?php wp_reset_query(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment