Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

tag/categ

$tax_query = array(
	'relation' => 'OR',
	array(
		'taxonomy'         => 'list-tags',
		'terms'            => '$typedKeyword',
		'field'            => 'name',
		'operator'         => 'IN',
		'include_children' => true,
	),
	array(
		'taxonomy'         => 'list-category',
		'terms'            => '$typedKeyword',
		'field'            => 'name',
		'operator'         => 'IN',
		'include_children' => true,
	),
);