List all event categories that have future events
-
Hello
What I’m trying to achieve is a list with all event categories that have future events. Now i’m using this code$args = array( 'type' => 'event', 'hide_empty' => true, 'taxonomy' => 'event-categories', 'orderby' => 'id', 'pad_counts' => false ); $eventcats = get_categories( $args ); foreach ($eventcats as $eventcat) { echo '<div class="filter" data-filter=".'.$eventcat->category_nicename.'">'.$eventcat->cat_name.'</div>'; }
and still shows the categories with past events, because they aren’t empty.
Any ideas?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘List all event categories that have future events’ is closed to new replies.