Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

category and event_status

$tax_query = array(
	'relation' => 'AND',
	array(
		'taxonomy'         => 'event_status',
		'terms'            => 'expired',
		'field'            => 'name',
	),
	array(
		'taxonomy'         => 'category',
		'terms'            => 'Sendyan Prize',
		'field'            => 'name',
	),
);