Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

phpclassTax

$tax_query = array(
	'relation' => 'OR',
	array(
		'taxonomy'         => 'category',
		'terms'            => '10',
		'field'            => 'slug',
	),
	array(
		'taxonomy'         => 'post_tag',
		'terms'            => 'mmm',
		'field'            => 'name',
	),
);