Resets the WordPress database back to it's defaults.
- Upload the
wp-db-reset
folder to the/wp-content/plugins/
directory or install directly through the plugin installer. - Activate the plugin through the 'Plugins' menu in WordPress.
- Visit the WordPress Reset Tools page by either clicking the link in the Admin Bar or Tools > Reset
- Type 'reset' in the text field and click reset.
Add define( 'REACTIVATE_WP_DB_RESET', true );
to wp-config.php
.
Add an array called $reactivate_wp_reset_additional
to the global scope by placing it in wp-config.php
that contains the plugin basenames of the plugins to activate, such as:
$reactivate_wp_reset_additional = array(
'hello.php',
'akismet/akismet.php'
);
1.0 (2020-06-19):
- Initial Public Release