<?php $CatPosts = new WP_Query("cat=1&showposts=5"); while($CatPosts->have_posts()) : $CatPosts->the_post();?>
Başlık: <?php the_title(); ?>
Link: <?php the_permalink() ?>
Özet: <?php the_excerpt(); ?>
Metin: <?php the_content(); ?>
<?php endwhile;
cat=1 Kategori ID no.sudur.
showposts=5 Gösterilecek yazı sayısıdır.