Hello
although i have found this thread
Query parameter for category
for the same issue i have a problem querying for tribe events with the category parameter. I am trying for example to get all events under a category (not events category) and instead i get all events
Here is the code
$args = array(
‘post_type’ => ‘tribe_events’,
‘taxonomy’=>$category,
‘orderby’ => ‘event_date’,
‘order’ => ‘DESC’,
);
query_posts($args);
Can you give me a hint? On another notice, i find it a bit confusing using the documentation as a lot of deprecated functions still appear there and not all options and parameters are listed for the functions. Am i missing something?
Thanks