Hide reccuring events with the query – Events Calendar PRO
-
Hello.
I’m using Events Calendar Pro (WordPress plugin).Is there any way how to hide reccuring events in the query?
I’m using two queries on the same page. One is for featured events (showing 4 featured events filtered by custom field) and second query shows a list of events populated with “Load More” button. (this must show reccuring events)
First query looks like this:
$args = array ( 'post_type' => 'tribe_events', 'posts_per_page' => '4', 'order' => 'DESC', 'orderby' => 'date', 'eventDisplay' => 'upcoming', 'meta_query' => array( 'relation' => 'AND', array( 'key' => 'brighter_sound_pick', 'value' => 'Yes', 'compare' => '=', ), ), ); // The Query $query = new WP_Query( $args );
- The topic ‘Hide reccuring events with the query – Events Calendar PRO’ is closed to new replies.