Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

featured and mc_calendar filter

filtro por featured and calendar

$meta_query = array(
	'relation' => 'OR',
	array(
		'key'     => 'phys_user_features_title',
		'value'   => '1',
		'compare' => '=',
		'type'    => 'NUMERIC',
	),
	array(
		'relation' => 'AND',
		array(
			'key'     => '_tour_end_date',
			'value'   => '$mc_from',
			'compare' => '>=',
			'type'    => 'DATE',
		),
		array(
			'key'     => '_tour_start_date',
			'value'   => '$mc_to',
			'compare' => '<=',
			'type'    => 'DATE',
		),
	),
);