bartulans
11/24/2017 - 9:36 AM

No Description

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