
foreach($terms as $term) {
$post_term_box .= "<a class=\"turlink\" href='".get_bloginfo('url')."/".$term->taxonomy."/".$term->slug."' title='".$term->name."'>".$term->name.", </a>";
} 4
●274

foreach($terms as $term) {
$post_term_box .= "<a class=\"turlink\" href='".get_bloginfo('url')."/".$term->taxonomy."/".$term->slug."' title='".$term->name."'>".$term->name.", </a>";
} <?php
$terms = get_the_terms( $post->ID, 'tur' );
if ($terms) {
foreach($terms as $term) {
echo "<a href='".get_bloginfo('url')."/".$term->taxonomy."/".$term->slug."' title='".$term->name."'>".$term->name." </a>";
}
}?>