Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

or

$meta_query = array(
	'relation' => 'OR',
	array(
		'key'     => 'fecha_evento',
		'value'   => 'hoy',
		'compare' => '>=',
	),
	array(
		'relation' => 'AND',
		array(
			'key'     => 'fecha_evento',
			'value'   => 'hoy',
			'compare' => '<',
		),
		array(
			'key'     => 'fecha_termino',
			'value'   => 'hoy',
			'compare' => '>=',
		),
	),
);