Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Get Users Saved Sector Reports

// WP_Query arguments
$args = array(
	'post_type'              => array( 'product' ),
	'post_status'            => array( 'published' ),
	'tax_query'              => array(
		array(
			'taxonomy'         => 'product_cat',
			'terms'            => '164',
			'field'            => 'term_id',
		),
		array(
			'taxonomy'         => 'resourceindustry',
			'terms'            => 'xxx',
			'field'            => 'term_id',
		),
	),
);

// The Query
$teams_reports_by_sector = new WP_Query( $args );