Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

filter product by custom fields

$meta_query = array(
	'relation' => 'AND',
	array(
		'key'     => 'special_product',
		'value'   => 'webinar',
	),
	array(
		'key'     => 'webinar_settings_internal_or_external',
		'value'   => 'internal',
	),
);