重置WordPress站点最有效的方法是什么?

时间:2018-06-25 作者:cag8f

我偶尔想将WordPress安装重置为默认设置,包括数据库和文件。最有效的方法是什么?

我知道有可行的插件可以重置数据库。但是,是否也有自动方法将文件重置为默认值?或者我需要删除所有内容并重新上传所有WordPress文件吗?

2 个回复
SO网友:birgire

如果您只想清空网站的内容(帖子、评论、术语和元数据),那么wp-cli 命令:

$ wp site empty
使用--uploads 用于删除上载文件夹中的所有文件的参数,以及--yes 跳过构象。

Warning: Remember to backup before testing!

看见the wp-cli docs 有关更多信息:

SO网友:Benjamin Atkin

您可以使用git和脚本:

#!/bin/bash
# check out a revision
git checkout master

# Force-add the wordpress config to the index so it
# isn\'t removed in the next step (add any other
# .gitignore\'d files you want to keep to the end of
# this)
git add -f config/wp-config.php  

# remove any files/directories not in the index
git clean -fdx

# removes files added to index in step 2 from the
# index (but doesn\'t remove them from the disk)
git reset

结束

相关推荐

New post from database

我的数据存储在DB(mysql)中,我想为每一行创建新的帖子,我用自定义字段创建了自定义帖子类型除了xml rpc之外,还有其他方法。干杯