WP display terms post category
<?php $terms = get_the_terms( get_the_ID(), 'space_type' ); ?>
<ul>
<?php if(!empty($terms) && !is_wp_error( $terms )){ ?>
<?php foreach ( $terms as $term ){ ?>
<li> <?php echo $term->name; ?></li>
<?php } ?>
<?php } ?>