Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/grappler/wordpress-database-reset
An easy way to reinitialize the WordPress database to its default settings.
https://github.com/grappler/wordpress-database-reset
Last synced: about 2 months ago
JSON representation
An easy way to reinitialize the WordPress database to its default settings.
- Host: GitHub
- URL: https://github.com/grappler/wordpress-database-reset
- Owner: grappler
- Created: 2013-12-10T15:20:29.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-10-01T13:55:36.000Z (about 9 years ago)
- Last Synced: 2024-10-15T20:11:29.456Z (2 months ago)
- Language: PHP
- Homepage: http://wordpress.org/extend/plugins/wordpress-database-reset/
- Size: 618 KB
- Stars: 0
- Watchers: 3
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
WordPress Database Reset
------------------------A plugin that allows you to skip the 5 minute installation and reset WordPress's database back to its original state.
###Features
* Extremely fast one click process to reset the WordPress database
* Choose to reset the entire database or specific database tables
* Secure and super simple to use
* Prefer the command line? Reset the database in one command
* Excellent for theme and plugin developers who need to clean the database of any unnecessary content quickly###Command Line
Once activated, you can use the WordPress Database Reset plugin with [WordPress CLI][1].#####Reset the database
```php
wp reset database
```
Want to specify a list of tables to reset?
```php
wp reset database --tables='users, posts, comments, options'
```
The current theme and plugins will be reactivated by default. You can disable them like so:
```php
wp reset database --no-reactivate
```#####List the table names
Use the list command if you're unsure of the database table names:
```php
wp reset list
```###Contributing
Contribute by sending in a plugin suggestion, an improvement or a pull request. If you are having an issue with the plugin, you can file an issue on the GitHub [issue page][2] or create a post on the WordPress [support forum][3].
###Credits
[bsmSelect][4] - Better Select Multiple (vicb | Ryan Cramer)
[1]: http://wp-cli.org/
[2]: https://github.com/chrisberthe/wordpress-database-reset/issues
[3]: https://wordpress.org/support/plugin/wordpress-database-reset
[4]: https://github.com/vicb/bsmSelect