Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Choose blogs and FYI from category

Choose blogs and FYI from category

$tax_query = array(
	'relation' => 'AND',
	array(
		'taxonomy'         => 'category',
		'terms'            => 'fyi',
		'field'            => 'slug',
		'operator'         => 'IN',
	),
	array(
		'taxonomy'         => 'category',
		'terms'            => 'blogs',
		'field'            => 'slug',
		'operator'         => 'IN',
	),
);