Advertisement
BakerMan

Remove events from upcoming list if they started yesterday

Feb 11th, 2013
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. // Does the event span multiple days?
  2. if (tribe_is_multiday()) {
  3.     // When does the event start and what day is today?
  4.     $startDate = tribe_get_start_date(null, false, 'Ymd');
  5.     $today = tribe_event_format_date(strtotime(get_query_var('eventDate')), false, 'Ymd');
  6.  
  7.     // If it started *before* today, let's give it a miss
  8.     if ($startDate < $today) continue;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement