Skip to content

Instantly share code, notes, and snippets.

@jo-snips
Created June 12, 2013 22:07
Show Gist options
  • Save jo-snips/5769558 to your computer and use it in GitHub Desktop.
Save jo-snips/5769558 to your computer and use it in GitHub Desktop.
The Events Calendar - Display All Recurrences of Event
<?php
global $post;
$all_events = tribe_get_events(array(
'eventDisplay'=>'all',
'name'=>get_the_title(),
'posts_per_page'=>-1
));
?>
<ul>
<?php foreach($all_events as $post) {
setup_postdata($post);
?>
<li><a href="<?php tribe_event_link(); ?>">
<?php echo tribe_get_start_date($post->ID, false, 'jS'); ?> of <?php echo tribe_get_start_date($post->ID, false, 'F'); ?> at <?php echo tribe_get_start_date($post->ID, false, 'ga'); ?>
</a></li>
<?php } //endforeach ?>
<?php wp_reset_query(); ?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment