Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Meta Query for Deposits

$meta_query = array(
	'relation' => 'AND',
	array(
		'key'     => '_wc_deposits_deposit_paid',
		'value'   => 'yes',
		'compare' => '=',
	),
	array(
		'key'     => '_wc_deposits_second_payment_paid',
		'value'   => 'no',
		'compare' => '=',
	),
);