<?
include "blog/wp-config.php";
mysql_query("SET NAMES 'latin5'");
mysql_query("SET CHARACTER SET latin5");
mysql_query("SET COLLATION_CONNECTION = 'latin5_turkish_ci'");
$my_query = new WP_Query('cat=3&showposts=5'); 
while ($my_query->have_posts()) : $my_query->the_post();$do_not_duplicate = $post->ID; 
?>

<a href="<?php the_permalink() ?>"><?php the_title(); ?></a><br>

<? endwhile;?>
bu sekilde cekebilirsin dostum.

$my_query = new WP_Query('cat=3&showposts=5');
buradaki cat=3 degeri blogundaki kategori ID sini veriyor. Bu degeri degiştirerek istedigin kategorideki verileri cekebilirsin.showposts=5 taki 5 degeride ana sayfada gosterecegın baslık sayısı.


takıldıgın bır nokta olursa yardımcı olabilirim tekrar.