sstasio

Event Calendar Pro event category query

Oct 22nd, 2012
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.68 KB | None | 0 0
  1. <div id="tabs-2">
  2. <ul>
  3. <?php
  4.  
  5. global $post;
  6. $all_events = tribe_get_events(
  7. array(
  8. 'eventDisplay'=>'upcoming',
  9. 'posts_per_page'=>10,
  10. 'tax_query'=> array(
  11. array(
  12. 'taxonomy' => 'tribe_events_cat',
  13. 'field' => 'slug',
  14. 'terms' => 'golden-gate-park-calendar'
  15. )
  16. )
  17. )
  18. );
  19.  
  20. foreach($all_events as $post) {
  21. setup_postdata($post);
  22. ?>
  23.  
  24. <li>
  25.  
  26. <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
  27. <span class="event-date"><a href="<?php the_permalink(); ?>"><?php echo tribe_get_start_date($post->ID, true, 'M j, Y'); ?></a></span>
  28.  
  29. <?php if ( has_post_thumbnail() ) { ?>
  30.  
  31. <div class="event-thumb">
  32. <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('thumbnail'); ?></a>
  33. </div>
  34. <div class="event-excerpt">
  35. <?php the_excerpt(); ?>
  36. </div>
  37.  
  38. <?php } else { ?>
  39.  
  40. <div class="event-content">
  41. <?php the_content(); ?>
  42. </div>
  43.  
  44. <?php } ?>
  45.  
  46. </li>
  47.  
  48. <?php } //endforeach ?>
  49. <?php wp_reset_query(); ?>
  50. </ul>
  51. </div>
Advertisement
Add Comment
Please, Sign In to add comment