我需要在我的服务器上使用SSH创建wordpress导出转储(.WXR)。我无法访问Wordpress仪表板。可以使用一些unix,mysql脚本完成。
答案 0 :(得分:4)
作为blogged here,你需要的只是export_wp
函数,所以运行一些东西。
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);
然后抓住生成的.xml文件!