Support

Home Forums Event Espresso Premium wp_list_categories – list event categories only if they have upcoming events?

wp_list_categories – list event categories only if they have upcoming events?

Posted: August 11, 2017 at 5:25 pm

Viewing 2 reply threads


Ed Evans

August 11, 2017 at 5:25 pm

I’m creating a sidebar category widget that displays event categories. Ideally, it would only list categories that have upcoming events to prevent clicking on the category link and seeing a blank page. Is there any sort of query or functionality that would enable this? I’m just using wp_list_categories at the moment:

<aside id="secondary" class="widget-area" role="complementary">
	<?php 
		echo '<div class="widget" id="widget-event-categories">';
			echo '<h2 class="widgettitle">Event Categories</h2>';

			$args = array(
				'show_option_all'	=> '',
				'orderby'			=> 'name',
				'order'				=> 'ASC',
				'style'				=> 'list',
				'child_of'			=> 0,
				'hierarchical'		=> 1,
				'title_li'			=> '',
				'show_option_none'	=> __('No categories'),
				'taxonomy'			=> 'espresso_event_categories',
				'show_count'		=> 1
			); 
			echo '<ul>';
				wp_list_categories( $args );
			echo '</ul>';
		echo '</div>';
	?>
</aside>
  • This topic was modified 7 years, 1 month ago by Josh. Reason: fixed code formatting


Josh

  • Support Staff

August 14, 2017 at 2:47 pm

Hi Ed,

You can actually pass in an array of event post IDs to the get_terms() function using object_ids. See also:

https://developer.wordpress.org/reference/classes/wp_term_query/__construct/#parameters

Here’s a gist that has some example code:

https://gist.github.com/joshfeck/4b368fae0b0f45f00624133d3be36a73


Ed Evans

August 14, 2017 at 3:34 pm

Perfect – thanks Josh!

Viewing 2 reply threads

The support post ‘wp_list_categories – list event categories only if they have upcoming events?’ is closed to new replies.

Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.

Event Espresso