Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

active_offer

$meta_query = array(
	'relation' => 'OR',
	array(
		'key'     => 'active_offer',
		'value'   => '1',
		'compare' => '=',
		'type'    => 'NUMERIC',
	),
	array(
		'key'     => 'offer_from_date',
		'value'   => '2025-01-02',
		'compare' => '>=',
		'type'    => 'DATE',
	),
	array(
		'key'     => 'offer_to_date',
		'value'   => '2025-01-03',
		'compare' => '<=',
		'type'    => 'DATE',
	),
);