I have an events weblog that uses entry + expiry dates + show_future_entries to display events over time in what I’m sure is a pretty standard way
I’m using categories to (amoung other things) indicate the venue for the event.
What I want to do is display all events/entries which are happening today (ie entry date in the past, expiry date in the future) and output them sorted by venue (ie EE category) and then by date within each category.
I think I’m right that I can’t do that within the normal weblog:entries parameters as order_by=“category_id” doesn’t exist.
Intitally I thought I could be crafty and use a weblog:category_archive call but that doesn’t allow show_expired=“no” (sensibly enough as it’s an archive tag after all), so that was a no go.
I’m guessing I could use a query here but last time I tried to do that my brain nearly exploded (despite much patient help from eMan).
I do have a back up plan if this proves impossible, but before I do that, can anyone see a route that I’ve missed?