File "category-style-2.php"

Full Path: /home/digimqhe/flashdigi.uk/comment-content/includes/blog/category-style-2.php
File size: 470 bytes
MIME-type: text/x-php
Charset: utf-8

<?php 
if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}
?>
<div class="tpgb-post-category cat-style-2">	
	<?php $categories = get_the_terms(get_the_ID() , $taxonomySlug ); 
		if(!empty($categories)) {
			foreach ( $categories as $category ) {
				echo '<a href="'.esc_url(get_category_link($category->term_id)).'" class="'.esc_attr($taxonomySlug).'-'.esc_attr($category->slug).'">'.esc_html($category->name).'</a>';
			}
		}
	?>
</div>