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?
Ana sayfada tek bir kategoriyi göstermek istemiyorum ?
3
●782
- 09-08-2010, 12:41:10
- 09-08-2010, 13:55:14Kimlik doğrulama veya yönetimden onay bekliyor.
- 09-08-2010, 14:05:07
<?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 »'); ?> <?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.