WP Query to display events and posts at the same page
This is a pretty common issue when you’re mixing regular posts with custom post types like “event” (from the Event Organiser plugin). The main problem is that WP_Query defaults to sorting by post_date, so it doesn’t know to use a custom field like eventstart. One way around this is to fetch the posts separately and … Read more