Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

buscar por cats

$cat_query = array(
	'relation' => 'AND',
	array(
		'taxonomy'         => 'category',
		'terms'            => array( 'a', ' b', ' c' ),
		'field'            => 'slug',
		'operator'         => 'IN',
	),
	array(
		'taxonomy'         => 'category',
		'terms'            => array( 'd', 'e' ),
		'field'            => 'term_id',
		'operator'         => 'NOT IN',
	),
);