Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

lpf-report-tax-query

$tax_query = array(
	'relation' => 'AND',
	array(
		'taxonomy'         => 'hc_payment_type',
		'terms'            => 'landlord-protection-fund',
		'field'            => 'slug',
		'operator'         => 'IN',
	),
	array(
		'taxonomy'         => 'hc_payment_status',
		'terms'            => 'completed',
		'field'            => 'slug',
		'operator'         => 'IN',
	),
);