Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

questions

$tax_query = array(
	'relation' => 'AND',
	array(
		'taxonomy'         => 'ranks',
		'terms'            => array( '1', '2', '3', '4', '5' ),
		'field'            => 'term_id',
		'operator'         => 'IN',
		'include_children' => false,
	),
	array(
		'taxonomy'         => 'topics',
		'terms'            => array( '6', '7', '8', '9' ),
		'field'            => 'term_id',
		'operator'         => 'IN',
		'include_children' => false,
	),
);