Automattic / eventbrite-api

The Eventbrite API plugin brings the power of Eventbrite to WordPress, for both users and developers.
68 stars 40 forks source link

Change the order of past events? #70

Closed tclayson closed 6 years ago

tclayson commented 6 years ago

How can I change the order of events, so I can use Eventbrite_Query to see past events starting with the most the most recently past event?

Thanks for the help!

kwight commented 6 years ago

Eventbrite_Query extends WP_Query so you should be able to work with the order parameter (but a search suggests that may need some work). There's also an eventbrite_query_args filter that could be helpful.

If you're working directly with the user_owned_events endpoint, there's an order_by parameter.

Hope that helps, good luck.