4 id'li kategorinin adı ve son 10 yazısı:

Alıntı
<?php echo get_cat_name(4);?>
<?php $recent = new WP_Query("cat=4&showposts=10"); while($recent->have_posts()) : $recent->the_post();?>
<a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
<?php endwhile; ?>
son yazılar ve kategorileri:

Alıntı
<?php if (have_posts()) : ?>

<?php while (have_posts()) : the_post(); ?>
<?php the_category(', ') ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link( __( '<span class="meta-nav">&larr;</span> Eski yazılar' ) ); ?></div>
<div class="alignright"><?php previous_posts_link( __( 'Yeni yazılar <span class="meta-nav">&rarr;</span>' ) ); ?></div>
</div>
<?php else : ?>
Bulunamadı
<?php endif; ?>