Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

test

$tax_query = array(
	array(
		'taxonomy'         => 'category',
		'terms'            => array( 'Ratified Monthly Minutes', '2024' ),
		'field'            => 'name',
		'operator'         => 'IN',
		'include_children' => false,
	),
	array(
		'taxonomy'         => 'category',
		'terms'            => array( 'Finance', 'Agenda', 'Unratified Minutes', 'Regular Updates', '' ),
		'field'            => 'name',
		'operator'         => 'NOT IN',
		'include_children' => true,
	),
);