<?php
//wp harici son 10 konu
//kodlama: niphell

include('wp-config.php'); //wp ayar yolu
header('Content-Type: text/html; charset=utf-8'); 
$konular = mysql_query("SELECT * FROM ".$table_prefix."posts ORDER BY ID DESC Limit 0,10");
        for ($j=0; $niphell=mysql_fetch_array($konular); $j++){
        echo '<a href="'.get_permalink($niphell[ID]).'" rel="bookmark">'.$niphell[post_title].'</a><br />';
}
?>
gerekli ayarlamaları yaparak kullanabilirsiniz.

niphell e teşekkürler.