etiketleri linksiz bir şekilde bu kodları kullanarak listeyebilirsiniz. gerisi senin hayal gücüne kalmış.

<?php
$posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
echo $tag->name . ', ';
}
}
?>