Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

query_class

$meta_query = array(
	'relation' => 'OR',
	array(
		'key'     => 'class_end_date',
		'value'   => '$today',
		'compare' => '>=',
		'type'    => 'NUMERIC',
	),
	array(
		'key'     => 'class_end_date',
		'compare' => 'NOT EXISTS',
	),
);