Advertisement
Sharkey

Tribe event list

Aug 29th, 2014
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <?php if ( $posts ): ?>
  2. <ol class="hfeed vcalendar">
  3.  
  4. <?php foreach( $posts as $post ) :
  5. setup_postdata( $post );
  6. ?>
  7. <li class="<?php tribe_events_event_classes() ?>">
  8.  
  9. <?php do_action( 'tribe_events_list_widget_before_the_event_title' ); ?>
  10.  
  11. <h4 class="entry-title summary">
  12. <a href="<?php echo tribe_get_event_link(); ?>" rel="bookmark"><?php the_title(); ?></a>
  13. </h4>
  14. <div class="duration">
  15. <?php echo tribe_events_event_schedule_details(); ?>
  16. </div>
  17. </li>
  18. <?php
  19. endforeach;
  20. ?>
  21. </ol>
  22. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement