get_the_term_list() yazının idsine göre tax leri çeker.
kullanmanız gereken:
get_taxonomies()
Alıntı
<?php
$args=array(
'name' => 'yapimci'
);
$output = 'objects'; // or names
$taxonomies=get_taxonomies($args,$output);
if ($taxonomies) {
foreach ($taxonomies as $taxonomy ) {
echo '<p>' . $taxonomy->name . '</p>';
}
}
?>