Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

featured doesnt exist or isnt featured

$meta_query = array(
	'relation' => 'OR',
	array(
		'key'     => 'featured',
		'value'   => '1',
		'compare' => '!=',
	),
	array(
		'key'     => 'featured',
		'compare' => 'NOT EXISTS',
	),
);