• 09-08-2010, 12:41:10
    #1
    Ana sayfada tek bir kategoriyi göstermek istemiyorum ? nasıl yapabilirim arkadaşlar.

    Mesela oyun müzik video kategorim var ve hepsine eklenen son yazılar ana sayafada çıkıyor. ben müzik kategrisini göstermek istemiyorum diyelim?
  • 09-08-2010, 13:55:14
    #2
    Kimlik doğrulama veya yönetimden onay bekliyor.
    http://www.problemcocuk.com/wordpres...gori-gizlemek/
  • 09-08-2010, 14:05:07
    #3
    <?php if (have_posts()) : ?>
    <?php $recent = new WP_Query("cat=26&showposts=6"); while($recent->have_posts()) : $recent->the_post();?>
    <a href="<?php the_permalink() ?>"  rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
    <?php the_content('Read the rest of this entry &raquo;'); ?>
    <?php endwhile; ?>
    <?php else: ?>
    <h2 class="center">Bulunamadı.</h2>
    <p class="center">Üzgünüz ancak aradığınız tema burada değil.</p>
    <?php endif; ?>
    cat=26 burada ki 26 gözükmesini istediğiniz kategori ID si oluyor. Birden çok kategori gözüksün isterseniz 26,27,39 gibi araya virgül atarak çoğalta bilirsiniz.