Skip to content

Instantly share code, notes, and snippets.

@jrstaatsiii
Created July 15, 2013 17:04
Show Gist options
  • Save jrstaatsiii/6001599 to your computer and use it in GitHub Desktop.
Save jrstaatsiii/6001599 to your computer and use it in GitHub Desktop.
Tri.be Event List
<div class="event-wrap">
<div class="upcoming-events">
<h3>Upcoming Events</h3>
<ul class="events">
<?php
global $post;
$all_events = tribe_get_events(array(
'eventDisplay' => 'all',
'posts_per_page' => 10
));
foreach($all_events as $post) {
setup_postdata($post);
?>
<li>
<span class="date"><?php echo tribe_get_start_date($post->ID, false, 'j'); ?></span>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</li>
<?php } //endforeach ?>
<?php wp_reset_query(); ?>
</ul>
</div>
<!-- end .upcoming-events -->
<p><a class="green cta-button" href="<?php echo get_bloginfo('url'); ?>/events/">More Events</a></p>
</div>
<!-- end .event-wrap -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment