LeoLopesWeb
5/6/2020 - 12:22 PM

the events calendar - events list

$events = tribe_get_events( [ 'posts_per_page' => 5 ] );
 
// Loop through the events, displaying the title and content for each
foreach ( $events as $event ) {
   echo '<h4>' . $event->post_title . '</h4>';
   echo get_the_permalink($event->ID);