Archive by custom post type and custom date field

Thanks to Milo for helping me through this. Here is the code that worked for me. function custom_events_query( $query ) { if ( $query->is_main_query() && $query->is_archive && !is_admin()&& is_post_type_archive(‘events’) && $query->query_vars[‘m’]!=”) { $query->set( ‘post_type’, ‘events’ ); $query->set( ‘meta_key’, ‘event_date’ ); $query->set( ‘orderby’, ‘meta_value’ ); $query->set( ‘order’, ‘DESC’ ); $query->set( ‘post_per_page’, 10 ); unset($query->query_vars[‘year’]); unset($query->query_vars[‘monthnum’]); unset($query->query_vars[‘day’]); … Read more

Looking for a simple calendar/events plugin [closed]

First off, I just want to say AMEN to this question. There are not a lot of good, reliable calendar plugins out there. I’ve struggled with this myself. Judging by your list of event calendars you’ve tried, you’ve just about exhausted the list of decent to reputable plugins. I honestly think what you’re looking for … Read more

Plugin for event management? [closed]

This one is the best I know of: Event Calendar / Scheduler The main features include: Day/Week/Month/Year/Agenda view + ability to create custom view Drag-n-drop support to configure event date and time Customizable appearance Single/multi-days events (daily, weekly, monthly or yearly basis) Customizable time scale Recurring events Multilingual