• 13-12-2008, 14:40:29
    #1
    merhaba;
    Şimdi wp de ana sayfada son eklenen konular çıkıyor.Ben bu konuları Kategori Altında sıralamak istiyorum.
    [media]http://i35.tinypic.com/11hz0qg.png[/media]
    http://i35.tinypic.com/11hz0qg.png
    Resimdeki gibi...
    Yani kategori Başlığı tepede kategoriye ait son mesela 5 mesaj sırlanıcak.Bu mümkün mü?
  • 13-12-2008, 15:56:49
    #2
    cat=5 buraya kategorinin ID sini yaz

    posts_per_page=-1 -1 kalırsa o katagorinin tüm yazıları gözükür

    mesala 10 yazarsan sadece 10 yazı gözükür o kategori ile alakalı


    <?php
    query_posts('cat=5&posts_per_page=-1');
    //cat=5 kategorinin ID'si, posts_per_page=-1 bütün yazılar. while (have_posts()) : the_post(); ?>
    <h2 id="post-<?php the_ID(); ?>"><?php the_title(); ?></h2>
    <?php the_content(); ?>
    <?php endwhile;  ?>