该插件尚未通过WordPress的最新3个主要版本进行测试。 当与较新版本的WordPress一起使用时,可能不再受到维护或支持,并且可能会存在兼容性问题。

WordPress Reset

描述

Resets the WordPress database back to it’s defaults. Deletes all customizations and content. Does not modify files only resets the database.

This plugin is very helpful for plugin and theme developers.

If the admin user exists and has level_10 permissions it will be recreated with its current password and email address. If the admin user does not exist or is a dummy account without admin permissions the username that is logged in will be recreated with its email address and current password. The blog name is also kept.

The plugin will add an entry to the Admin Bar under the site title and has the ability to reactivate itself and other plugins after the reset.

Upgrade

  1. Use the plugin updater in WordPress or…
  2. Delete the previous wordpress-reset folder from the /wp-content/plugins/ directory
  3. Upload the new wordpress-reset folder to the /wp-content/plugins/ directory

用法

  1. Visit the WordPress Reset Tools page by either clicking the link in the Admin Bar or Tools>WordPress Reset
  2. Type ‘reset’ in the text field and click reset.

安装

  1. Upload the wordpress-reset folder to the /wp-content/plugins/ directory or install directly through the plugin installer.
  2. Activate the plugin through the ‘Plugins’ menu in WordPress or by using the link provided by the plugin installer

常见问题

How can I get this plugin to automatically reactive after the reset?

Add define( 'REACTIVATE_WP_RESET', true ); to wp-config.php above /* That's all, stop editing! Happy blogging. */

Can this plugin reactivate other plugins automatically after performing the reset?

Add an array called $reactivate_wp_reset_additional to the global scope by placing it in wp-config.php above /* That's all, stop editing! Happy blogging. */ that contains the plugin basenames of the plugins to activate, such as:

$reactivate_wp_reset_additional = array(
    'hello.php',
    'akismet/akismet.php'
);

评价

2021 年 10 月 8 日 2 回复
It deletes all the users from database when I try to reset the site, I can never login to that site, I had to restore Wordpress. Fixed the bug asap/.
2020 年 7 月 14 日
Exactly what I was looking for Fast, easy to use and very through! Thanks 🖖
阅读所有68条评价

贡献者及开发者

“WordPress Reset” 是开源软件。 以下人员对此插件做出了贡献。

贡献者

将“WordPress Reset”翻译成您的语言。

对开发感兴趣吗?

您可以浏览代码,查看SVN仓库,或通过RSS订阅开发日志

更新日志

1.4

January 19, 2016

  • Fix compatibility with PHP 7.0
  • 国际化

1.3.3 (2013-12-18):

  • Fix an issue where a user does not have a user_level

1.3.2 (2012-02-13):

  • Support PHP versions below 5.3.0, by not using lambda function creation in add_action for admin_notices

1.3.1 (2012-01-29):

  • Apparently in a LIKE query, an underscore matches a single character, so we must escape it

1.3 (2012-01-29):

  • Fixes a deprecated notice in WordPress 3.3 when using get_userdatabylogin
  • Removes the $auto_reactivate variable
  • Look for REACTIVATE_WP_RESET constant to be defined in wp-config.php for auto reactivation after reset
  • Look for global $reactivate_wp_reset_additional for additional plugins to auto reactivate after reset
  • Add a Reset link to the admin bar under the site title

1.2 (2010-04-04):

  • Updates to fix deprecated notices for WP 3.0
  • Updates for 3.0 to disable password nag
  • Modify new blog email to not include the generated password

1.1 (2009-10-01):

  • WordPress 2.8 Updates, do not show auto generated password nag after reset

1.0 (2009-03-17):

  • Initial Public Release