Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Tax Query for Resources

$tax_query = array(
	'relation' => 'OR',
	array(
		'taxonomy'         => 'resource-type',
		'terms'            => 'magazine',
		'field'            => 'slug',
		'operator'         => 'IN',
	),
	array(
		'taxonomy'         => 'resource-type',
		'terms'            => 'guide',
		'field'            => 'slug',
	),
);