Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Terrace Tower Display Office Space by Property

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

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

// The Loop
if ( $os_property_query->have_posts() ) {
	while ( $os_property_query->have_posts() ) {
		$os_property_query->the_post();
		// do something
	}
} else {
	// no posts found
}

// Restore original Post Data
wp_reset_postdata();