Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

expires_AND

$meta_query = array(
	'relation' => 'AND',
	array(
		'key'     => 'exipry_date',
		'value'   => 'today',
		'compare' => '<=',
		'type'    => 'DATETIME',
	),
	array(
		'key'     => 'expires',
		'value'   => 'YES',
		'compare' => '=',
		'type'    => 'CHAR',
	),
);