Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Published event is not repeating

// WP_Query arguments
$args = array(
	'post_type'              => array( 'event' ),
	'post_status'            => array( 'published' ),
	'meta_query'             => array(
		array(
			'key'     => 'repeating',
			'compare' => '=',
			'type'    => 'BINARY',
		),
	),
);

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