Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Hosting

// WP_Query arguments
$args = array(
	'tax_query'              => array(
		array(
			'taxonomy'         => 'host_cat',
		),
	),
);

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