Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

j-tax-query

$tax_query = array(
	'relation' => 'OR',
	array(
		'taxonomy'         => 'category',
		'terms'            => 'mycat',
		'field'            => 'slug',
		'include_children' => true,
	),
	array(
		'taxonomy'         => 'tag',
		'terms'            => 'mytag',
		'field'            => 'slug',
		'operator'         => 'IN',
	),
);