Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

query wphae host list

// WP_Query arguments
$args = array (
	'post_type'              => 'wphae_host',
	'post_status'            => 'published',
	'pagination'             => false,
	'order'                  => 'ASC',
	'orderby'                => 'date',
);

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