Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

comparedates

$meta_query = array(
	'relation' => 'OR',
	array(
		'key'     => 'starting_date',
		'value'   => '12/2019/10',
		'compare' => '>=',
		'type'    => 'DATE',
	),
	array(
		'key'     => 'end_date',
		'value'   => '12/2019/10',
		'compare' => '>=',
		'type'    => 'DATE',
	),
);