Hi, I had another thred open that is now closed but I need some help back on it.
Pulling in custom queries to my custom homepage
I got the title working but the date and the city is still not showing up for me, below you can see my code.
<table class="stack events-table">
<tbody>
<?php $events = tribe_get_events( array('posts_per_page' => 5,) );
foreach ( $events as $event ) { ?>
<tr>
<td><a href="<?php the_permalink() ?>"><h4><?php echo $event->post_title ?><h4></a></td>
<td><p><?php echo tribe_get_start_date(); ?></p></td>
<td><p><?php echo tribe_get_city(); ?></p></td>
</tr>
<?php wp_reset_postdata(); } ?>
</tbody>
</table>
Thanks for the help