Created
July 15, 2013 17:04
-
-
Save jrstaatsiii/6001599 to your computer and use it in GitHub Desktop.
Tri.be Event List
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
<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