Advertisement
Guest User

Tribe Events Calendar Daily Event Query

a guest
Apr 8th, 2013
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <h4 class="event-day">Today's Hours<br> <?php echo tribe_get_start_date( null, false ); ?></h4>
  2. <?php
  3. global $post;
  4. $current_date = date('j M Y');
  5. $end_date = date('j M Y');
  6. $get_posts = tribe_get_events(array('start_date'=>$current_date,'end_date'=>$end_date) );
  7. foreach($get_posts as $post) { setup_postdata($post); ?>
  8.  
  9. <b><?php the_title(); ?>:</b>
  10. <?php if (tribe_get_start_date() !== tribe_get_end_date() ) { ?>
  11. <meta itemprop="startDate" content="<?php echo tribe_get_start_date( null, false, 'g:i a' ); ?>"/><?php echo tribe_get_start_date(null, false, 'g:i a'); ?>
  12. <?php _e('-', 'tribe-events-calendar'); ?>
  13. <meta itemprop="endDate" content="<?php echo tribe_get_end_date( null, false, 'g:i a'); ?>"/> <?php echo tribe_get_end_date(null, false, 'g:i a'); ?>
  14. <?php } else { ?>
  15. <?php _e('CLOSED', 'tribe-events-calendar'); ?>
  16. <?php } ?></br>
  17. <?php } //endforeach ?>
  18. <?php wp_reset_query(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement