我正在使用Phing编写一个Php构建脚本,该脚本将安装WP以及一些默认设置(主题/插件和自定义代码),这项工作仍在进行中。
https://github.com/wycks/WordPhing/
在…内
build.xml
您将看到一些php选项,如以下在安装期间运行的选项:
//remove Hello Dolly
delete_plugins(array(\'hello.php\'));
//remove default hello world post
wp_delete_post(1,true);
//remove default sample page
wp_delete_post(2,true);
//remove default Mr.Wordpress comment
wp_delete_comment( 1, true ) ;
另外,我还没有在最新版本或linux上进行测试。