Custom Taxonomy Integration and Calendar Filtering
-
Hi!
I am currently working with The Events Calendar and have successfully created a custom taxonomy for Tribe Events using the following code:
function register_event_type_taxonomy() {
register_taxonomy(
'event_type',
'tribe_events',
array(
'label' => 'Rodzaj wydarzenia',
'rewrite' => array('slug' => 'type'),
'hierarchical' => true,
'show_admin_column' => true,
)
);
}
add_action('init', 'register_event_type_taxonomy');My question is whether it is possible to easily display a calendar view that filters events based on this custom taxonomy? Specifically, I would like to open a calendar showing events assigned to a certain taxonomy term.
I would like this taxonomy to work like a category or tags, i.e. a url like /events/category/ -> /events/my_taxonomy/ would be available, and in addition, that I could open an RSS feed:
/events/category/…/feed -> /events/my_taxonomy/feed
It is possible? in the free version of The Events Calendar, or would I need to upgrade to the Pro version to achieve this?
Thanks! ??
- You must be logged in to reply to this topic.