Wp te istediğn kategoriyi çekme nasıl olur?
5
●1.578
- 23-11-2009, 00:25:48Mesela 20 tane kategori var diyelim
ben oyun, şiir,fıkra kategorilerinin id'sini yazıcam sadece o kategoriler gelecek - 23-11-2009, 05:01:04bu kategoriyi listeler..ghurjhan adlı üyeden alıntı: mesajı görüntüle
<?php $recent = new WP_Query("cat=6&showposts=2"); while($recent->have_posts()) : $recent->the_post();?><?php $recent = new WP_Query("cat=6,7,8,9,10,11&showposts=2"); while($recent->have_posts()) : $recent->the_post();?>showpost'u kaldırırsan listeleme de açılır yani sayfalama şeysi.
<?php $recent = new WP_Query("cat=6,7,8,9,10,11"); while($recent->have_posts()) : $recent->the_post();?>konuları listeler..
kullanımı:
<?php $recent = new WP_Query("cat=6&showposts=2"); while($recent->have_posts()) : $recent->the_post();?> <h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2> <?php the_content(__('Devamını Oku'));?> <?php endwhile; ?> - 23-11-2009, 12:41:28anarschi adlı üyeden alıntı: mesajı görüntülesadece bu çalıştı ama kategorinin altındaki konular da çıkıyorAlıntı
sadece kategori çıkmasını istiyorum ben