nickberens360
4/20/2017 - 6:27 PM

WP display terms post category

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 }  ?>