2012-09-08 17 views

cevap

3

blogged here olarak, ihtiyacınız olan tek şey export_wp işlevidir, bu nedenle satırlarda bir şey çalıştırın.

include 'wp-config.php'; 
include 'wp-admin/includes/export.php'; 

ob_start(); 
export_wp(); 
$file = ob_get_contents(); 
ob_end_clean(); 

$fh = fopen("wordpress-" . date('Y-m-d') . ".xml", 'w'); 
fwrite($fh, $file); 
fclose($fh); 

Ardından oluşturulan .xml dosyasını yakalayın!