anarschi adlı üyeden alıntı: mesajı görüntüle
bu kategoriyi listeler..

                <?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; ?>
Alıntı
<?php $recent = new WP_Query("cat=6&showposts=0"); while($recent->have_posts()) : $recent->the_post();?>
<h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>

<?php endwhile; ?>
sadece bu çalıştı ama kategorinin altındaki konular da çıkıyor
sadece kategori çıkmasını istiyorum ben