Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

NYCLP Tax Terms

$tax_query = array(
	'relation' => 'AND',
	array(
		'taxonomy'         => 'location',
		'terms'            => 'ripon',
		'field'            => 'slug',
		'operator'         => 'IN',
		'include_children' => true,
	),
	array(
		'taxonomy'         => 'offering_feature',
		'terms'            => 'classroom',
		'field'            => 'slug',
		'operator'         => 'IN',
		'include_children' => true,
	),
);