Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

tax_query_same

taxonomy query for same artist

$tax_query_same = array(
	'relation' => 'OR',
	array(
		'taxonomy'         => 'folio_type',
		'terms'            => array( 'profile', 'artist' ),
		'field'            => 'slug',
		'operator'         => 'IN',
		'include_children' => true,
	),
);