Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

facility and closure

$meta_query = array(
	'relation' => 'AND',
	array(
		'key'     => 'facility_id',
		'value'   => '$facility_id',
		'compare' => '=',
		'type'    => 'NUMERIC',
	),
	array(
		'key'     => 'closure_end_date',
		'value'   => '$year_ago',
		'compare' => '>=',
		'type'    => 'DATE',
	),
);