Daha basit bir sekilde cekebilirsiniz konularinizi..
<?php require('./subdomain-bulundugu-dizin(path)/wp-blog-header.php');?>
 <?php
query_posts('showposts=5&cat=4,6'); 
while(have_posts()): the_post();
the_date();//Tarih
the_author_firstname();//yazar ismi
the_author_lastname();//yazar soyismi
the_title();//Konu basligi
the_content();//icerik
the_permalink();//icerik linki
endwhile;
?>