Tabii diğer alternatif veritabanına bağlanmak ve veritabanını kendiniz okumak için PHP kullanmak için :)
//You'll want to set your database credentials
mysql_connect($server, $username, $password);
mysql_select_db($wp_db);
// Modify the fields to pull whatever data you need for the output, even perhaps join the wp_users
table for user data
// Setting the ORDER BY to DESC to mimic the Wordpress ordering with newest first
$sql = "SELECT ID
, post_author
, post_date
, post_content
, post_title
, post_status
, post_name
, guid
FROM wp_posts
ORDER BY post_date
DESC";
$data = mysql_query($sql);
$num = count($data);
for($i = 0; $i < $num; $i++){
$row = mysql_fetch_array($data);
// Output your posts to something
print_r($row);
}
Bu çok daha kolay veri ile oynamak için izin vermelidir :)