WordPress EventCalendar loop query

I’m using the EventCalendar plugin on this site for my shows, which works well and is really easy to use.

EC3 has a bunch of automatic query pages to display various kinds of event selections, but I wanted a dedicated calendar page for the nice URL. I needed to set up the loop query to select the EC event posts. After staring at the EC3 code for a while this is what worked:


$ec3->join_ec3_sch=true;
$ec3->order_by_start=true;
add_filter('posts_orderby','ec3_filter_posts_orderby',11);
query_posts("ec3_after=" . date('Y-m-d'));

I haven’t gotten comments going on the site yet cuz I’m terrified of comment spam, so for comments/questions/flames contact me at the email addy in the footer.