Panelim adlı üyeden alıntı: mesajı görüntüle
<?php $furty = new WP_Query("showposts=5&cat=1"); while($furty->have_posts()) : $furty->the_post();?>
 
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>
 
<?php endwhile; ?>
Showpost=5 yazan yer kaç içerik çekceğindir.

Cat=1 yazan yere ise Kategori id yazıcaksın. Örnek olarak böyle.
Teşekkürler arkadaşım.