Advertisement
amandaveenhuis

weekend events

Mar 4th, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <?php
  2. $saturday = date("Y-m-d", strtotime("next Saturday"));
  3. $sunday = date("Y-m-d", strtotime("next Sunday"));
  4.  
  5. $weekends = tribe_get_events( array(
  6. 'eventDisplay' => 'custom',
  7. 'start_date' => $saturday,
  8. 'end_date' => $sunday,
  9. 'posts_per_page'=>10
  10. ) );
  11.  
  12. foreach($weekends as $post) {
  13. setup_postdata($post);
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement