Created
June 12, 2013 22:07
-
-
Save jo-snips/5769558 to your computer and use it in GitHub Desktop.
The Events Calendar - Display All Recurrences of Event
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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