haXan1711 adlı üyeden alıntı: mesajı görüntüle
<?php
$termDiscription = term_description( '', get_query_var( 'taxonomy' ) );
if($termDiscription != '') : ?>
<div class="tag-desc"><?php echo $termDiscription; ?></div>
<?php endif; ?>

Bunu deneyin...

--R10.NET; Flood Engellendi -->-> Yeni yazılan mesaj 22:00:50 -->-> Daha önceki mesaj 21:59:52 --

Taxonomy yazan YerE tur yazın.
Olmadı hocam yine boş geldi, yardımcı olmayan çalışan herkese teşekkür ederim.

Aşağıda ki gibi bir yazım yaparak amacıma ulaşabildim.

<?php 
$taxData = get_the_terms($post->ID,'tur'); 
foreach($taxData as $tax){
$term_id = $tax->term_id;
$taxonomy = 'tur';
echo term_description($term_id,$taxonomy); 
}
?>