Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

language tax query

$tax_query = array(
	array(
		'taxonomy'         => 'language',
		'terms'            => 'english',
		'field'            => 'slug',
	),
	array(
		'taxonomy'         => 'resource_category',
		'terms'            => '$category->term_id',
		'field'            => 'term_id',
	),
);