Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Untitled Snippet

$tax_query = array(
	'relation' => 'AND',
	array(
		'relation' => 'OR',
		array(
			'taxonomy'         => 'audience',
			'terms'            => array( 'child', 'adult' ),
			'field'            => 'slug',
			'operator'         => 'IN',
		),
	),
);