<?php $recent = new WP_Query("cat=1&showposts=1&offset=0"); while($recent->have_posts()) : $recent->the_post();?>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
<?php the_excerpt(); ?>
<?php endwhile; ?>

<?php $recent = new WP_Query("cat=1&showposts=3&offset=1"); while($recent->have_posts()) : $recent->the_post();?>
<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
<?php endwhile; ?>

<?php wp_reset_query(); ?>
ilk kod, 1 id'li kategoriden son yazının başlığını ve özetini, ikinci kod ise 1 id'li kategoriden ilk yazı hariç son 3 yazının(2-3-4üncü yazı yani) başlıklarını gösterir.