Konu
Etiketlerin linklerini kaldırma ?
06-01-2011, 01:33:28
#2
Padre
Ana sayfa için index.php de, tekil sayfa için single.php de
<?php endwhile; ?>
bul altına şu kodu ekle;
Etiketler: <?php
$posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
echo $tag->name . ', ';
}
}
?>