Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Tax Query

$tax_query = array(
	'relation' => 'OR',
	array(
		'taxonomy'         => 'category',
		'terms'            => 'categoryTest',
		'field'            => 'slug',
	),
	array(
		'taxonomy'         => 'type',
		'terms'            => array( 'typeTest', ' typeTest2' ),
		'field'            => 'term_id',
	),
);