Define category of events to display
-
Hi Jeroen
I have the next four events showing on the home page using the code below. Can you tell me how I can adjust this to only display events in the category ‘concert’ please?
<?php $args = array( 'start' =>'now', 'limit' => 4, ); $events = $wp_theatre->events->get($args); foreach ($events as $event) { echo '<div class="col-md-3 home-page-event">'; echo '<div class="inner">'; echo $event->production()->thumbnail_html('homepage-thumb'); echo '<h3>'.$event->permalink_html( ).'</h3>'; echo $event->venue(); echo $event->startdate_html(); echo '</div></div>'; } ?>
Many thanks!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Define category of events to display’ is closed to new replies.