We are using 7.1, but also tried 7.2
We aren’t actually using it in functions.php, we are using it in one of our controllers in our theme. It was working great before the most recent update.
This is what we are doing:
$args = array(
'posts_per_page' => 2,
'tribe_events_cat' => 'Anniversary'
);
$events = tribe_get_events( $args );
foreach( $events as $event ) {
$event->excerpt = tribe_events_get_the_excerpt( $event->ID );
$event->permalink = get_permalink( $event->ID );
$event->date_date = strip_tags( tribe_get_start_date( $event->ID ) );
$event->venue_display = strip_tags( tribe_get_venue( $event->ID ) );
}
We are having this issue too. Did you find a solution?