Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

meta query

$meta_query = array(
	'relation' => 'AND',
	array(
		'key'     => 'ai_sale-start-date',
		'compare' => '>=',
		'type'    => 'DATE',
	),
	array(
		'key'     => 'ai_sale-end-date',
		'compare' => '<=',
		'type'    => 'DATE',
	),
);