No Description
<?php $terms = get_the_terms( $post->ID , 'cat_listing' ); foreach ( $terms as $term ) { ?> <a href="<?php echo site_url(); ?>/cat_listing/<?php echo $term->slug; ?>/"><?php echo $term->name; ?></a> <?php } ?>