PHP loop display week's events
-
Hey guys! I have intermediate knowledge of php and I’m editing the code for the events calendar shortcode.
Currently I have this for the meta query:
$posts = get_posts( array( 'post_type' => 'tribe_events', 'posts_per_page' => $ecs_limit, 'tax_query'=> $ecs_event_tax, 'meta_key' => '_EventStartDate', 'orderby' => 'meta_value', 'order' => $ecs_order, 'meta_query' => array( array( 'key' => '_EventStartDate', 'value' => date('Y-m-d'), 'compare' => '>=', 'type' => 'DATETIME' ) ) ) );
I know I want events to show up following this pattern:
Week is Sunday-Saturday
Include all events that start OR end during that week.Any help? ?? Thanks!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘PHP loop display week's events’ is closed to new replies.