This is the code I’m using right now:
global $post;
$start_date= date(‘j M Y’,);
$end_date = date(‘j M Y’, strtotime(‘7 days’));
$get_posts = tribe_get_events(array(‘start_date’=>$current_date,’end_date’=>$end_date,’posts_per_page’=>10) );
foreach($get_posts as $post) { setup_postdata($post);
/*post*/
} //endforeach
wp_reset_query();
But the returned list looks exactly the same as the default template.
can anyone help?