• 16-01-2021, 20:57:47
    #1
    Yukarıdaki örnekteki gibi listelen wordpress yazıların başına otomatik nasıl sayı ekleriz böyle listelendikçe sayılarda otomatik eklensin
  • 16-01-2021, 21:09:40
    #2
    Onun bir liste olduğunu varsayarsak css ile yapabilirsin

    ul { counter-reset: section;   list-style-type: none;}
    li::before {  counter-increment: section;  content: counters(section,".") " ";}
  • 16-01-2021, 21:15:54
    #3
    BuRaKM adlı üyeden alıntı: mesajı görüntüle
    Onun bir liste olduğunu varsayarsak css ile yapabilirsin

    ul { counter-reset: section;   list-style-type: none;}
    li::before {  counter-increment: section;  content: counters(section,".") " ";}
    Hocam css değil de
    <?php query_posts('showposts=10'); ?>
    <?php while (have_posts()) : the_post(); ?>
    <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
    <?php endwhile;?>

    Böyle bir kod son yazıları çekiyor ve yazılar çekerken başına sayıları otomatik nasıl ekletebiliriz css değil de