Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

rex

// WP_Query arguments
$args = array(
	'post_type'              => array( 'event' ),
	'post_status'            => array( 'published' ),
);

// The Query
$upcoming = new WP_Query( $args );