Adding thumbnails to list of forthcoming events
-
Hi
I’d be grateful to anyone who can point me in the right direction please. I am trying to show a list of the four next events on my site’s home page including the event title, date, start time, venue and a suitably-sized version of the featured image. I can’t work how out how to get the featured image to appear. Here’s what I have so far:
<?php $args = array( 'start' =>'now', 'limit' => 4, ); $events = $wp_theatre->events->get($args); foreach ($events as $event) { echo '<div class="col-md-3 col-sm-6">'; echo '<h3>'.$event->permalink_html( ).'</h3>'; echo $event->venue(); echo $event->startdate_html().$event->starttime_html(); echo '</div>'; } ?>
Thank you!
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Adding thumbnails to list of forthcoming events’ is closed to new replies.