ghurjhan adlı üyeden alıntı: mesajı görüntüle
wp_list_categories('orderby=name&include=3,5,9,16' ); ?>

gibisinden.
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; ?>