Hey there,
thanks for the great plugiN! :)
I adding this plugin to my theme and because of that i’m doing some customization.
I want to list events from only one category, or from specific ones. Or from some and not others.
Im trying this way (show only events from category one) , but it still list all events.
$args = array(
‘post_type’ => ‘event’, // required
‘suppress_filters’ => FALSE, // required
‘posts_per_page’ => -1 // optional
‘cat’ => 1,
);
$events = new WP_Query($args);
?>
<?php while ( $events->have_posts() ) : $events->the_post();