Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

product category cb

$tax_query = array(
	'relation' => 'AND',
	array(
		'taxonomy'         => 'category',
		'terms'            => 'carlsbad-campus',
		'field'            => 'term_id',
		'operator'         => 'IN',
		'include_children' => true,
	),
	array(
		'taxonomy'         => 'organization',
		'terms'            => 'boys-and-girls-club-carlsbad',
		'field'            => 'term_id',
		'operator'         => 'IN',
		'include_children' => false,
	),
);