Skip to content

Instantly share code, notes, and snippets.

Created August 31, 2012 05:22
Show Gist options
  • Select an option

  • Save anonymous/3549327 to your computer and use it in GitHub Desktop.

Select an option

Save anonymous/3549327 to your computer and use it in GitHub Desktop.
Display Featured Events
<?php
global $post;
$all_events = tribe_get_events(
array(
'eventDisplay'=>'upcoming',
'posts_per_page'=>20,
'tax_query'=> array(
array(
'taxonomy' => 'tribe_events_cat',
'field' => 'slug',
'terms' => 'featured-event'
)
)
)
);
foreach($all_events as $post) {
setup_postdata($post);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment