Islenska adlı üyeden alıntı: mesajı görüntüle
ama bunu iki durumda da yani aynı sayfada hem Çiçek Modelleri hem de cicek-modelleri şeklinde yazmak istiyorum. Aynı anda olması gerekiyor.
<?php
$posttags = get_the_tags();
$count=0; $sep='';
if ($posttags) {
echo '';
foreach($posttags as $tag) {
$count++;
echo $sep . ''.sef_link($tag->name)." ".$tag->name.'';
$sep = ', ';
if( $count > 0 ) break; //change the number to adjust the count
}
}
?>