Need to have an archive widget which organizes and displays a custom post type using a custom date field
Yep. You can add a meta_query parameter to methods that query posts, such as WP_Query. This one below gets a custom post type between two dates (which are custom fields created by ‘advanced custom fields’ plugin) and sorts on one of these dates: $args = array( ‘post_type’ => ‘event’, ‘posts_per_page’ => ‘-1’, ‘post_status’ => array( … Read more