Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Filter by one custom field with multiple values

$meta_query = array(
	'relation' => 'OR',
	array(
		'key'     => 'article_brand',
		'value'   => 'life',
	),
	array(
		'key'     => 'article_brand',
		'value'   => 'general',
	),
);