Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

acfTime

meta query acf compare avec time

$meta_query = array(
	'relation' => 'AND',
	array(
		'key'     => 'horaires_de_debut_mardi',
		'value'   => '$time',
		'compare' => '<=',
		'type'    => 'NUMERIC',
	),
	array(
		'key'     => 'horaires_de_fin_mardi',
		'value'   => '$time',
		'compare' => '>=',
		'type'    => 'NUMERIC',
	),
);