Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

my first taxonomy snippet

for recipe and occasion

$tax_query = array(
	'relation' => 'AND',
	array(
		'taxonomy'         => 'recipe',
		'terms'            => 'other-mixes',
		'field'            => 'slug',
		'operator'         => 'AND',
	),
	array(
		'taxonomy'         => 'occasion',
		'terms'            => 'summer-entertaining',
		'field'            => 'slug',
	),
);