Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

expiration_date

$meta_query = array(
	'relation' => 'OR',
	array(
		'key'     => 'expiration_date',
		'value'   => '$end',
		'compare' => '<=',
		'type'    => 'NUMERIC',
	),
	array(
		'key'     => 'post_is_extend',
		'value'   => '1',
		'compare' => '=',
		'type'    => 'NUMERIC',
	),
);