Bağlantı olmadan wordpress etiketleri gösteriliyor

1 Cevap php

Ben bir yazı değil, etiketi üzerinde bir bağlantı olmadan etiketlerin listesini göstermek istiyorum. Şu anda kullanabilirsiniz:

<?php the_tags( '<li>', ', ', '</li>'); ?>

Nasıl etiketi linki şerit mi?

1 Cevap

Kimden Wordpress Codex:

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