/ Published in: PHP
I used this code to display a list of categories in my sidebar. There is an issue with this code — it shows ALL event categories. I am working on a solution to only display the categories for upcoming (future) events.
Expand |
Embed | Plain Text
<?php $taxonomy = 'tribe_events_cat'; $orderby = 'name'; $show_count = 0; // 1 for yes, 0 for no $pad_counts = 0; // 1 for yes, 0 for no $hierarchical = 1; // 1 for yes, 0 for no $title = ''; 'taxonomy' => $taxonomy, 'orderby' => $orderby, 'show_count' => $show_count, 'pad_counts' => $pad_counts, 'hierarchical' => $hierarchical, 'title_li' => $title, ); ?> <ul> <?php wp_list_categories($args); ?> </ul>
You need to login to post a comment.
