Resetify – Advanced Reset & Database Cleaner
Resetify is the ultimate WordPress reset plugin and database cleanup tool. Whether you are a developer, an agency, or a site owner, Resetify provides the fastest and safest way to reset your site back to a default state without touching essential files. It is the absolute best companion for anyone who frequently needs to wipe content while keeping essential configurations intact. How to Reset WordPress Theme Without Losing Content Ever imported a broken demo, ruined your Customizer settings, and desperately searched, “how to reset wordpress theme without losing content”? Resetify has a dedicated Theme Reset module built specifically for this! With a single click, you can completely unconfigure a messy theme while keeping your hard work incredibly safe: * Switch back to a default WordPress theme * Clear all Customizer settings and Theme Mods * Unassign broken Widgets and Menus * ✅ Explicitly keep all your Posts, Pages, custom content, and WooCommerce products. * ✅ Explicitly keep all Media Library images and uploads. Get total peace of mind knowing your content is 100% safe while your theme goes back to its factory default state. 🟢 Free Features Include: Theme Reset: Safely reset your theme configuration while perfectly preserving your content. Standard Reset: Wipe the site back to its default state while keeping your current admin logged in and preserving your basic settings. Basic Custom Reset: Selectively delete Posts, Pages, Media, Comments, and Users while keeping everything else untouched. Snapshots: Create lightning-fast backups of your database before making major changes, and instantly restore them with one click. Database Cleanup Tools: Safely delete Transients, clean orphaned uploads, wipe revisions, auto-drafts, and empty trash. Plugin / Theme Collections: Install your favorite bundles of plugins and themes with a single click. ⭐ Resetify PRO: Unlock Absolute Power Take your site management to the next level with Resetify PRO. Perfect for professionals who need surgical precision and guaranteed emergency recovery. 👉 Upgrade to Resetify PRO Here Emergency Access Tool: Get locked out? White Screen of Death? Core files compromised? The single-file Emergency Access Tool creates a backdoor to reliably restore your site, even if WP-Admin is completely inaccessible. Nuclear Reset: Drop ALL database tables, delete ALL files in uploads/themes/plugins, and regenerate your wp-config.php security salts. A literal “nuke from orbit” option. Deep Database Cleansing: Detect and drop orphaned tables left behind by poorly coded plugins, and automatically run OPTIMIZE TABLE queries on your database. Advanced Custom Resets: Reset Menus, Widgets, Theme Customizer modifications, core WordPress Options, Tags, and Categories directly. Auto-Snapshots: Automatically create safety snapshots right before major updates or reset operations are performed. White Label & Stealth Mode: Hide Resetify from clients or rename it completely. DominoPress WordPress Plugins Check out our other WordPress Plugins: ShopCentral – The ultimate multi-store manager to sync products and orders across your entire WooCommerce network. Official Website | WordPress.org InsightPress – Advanced analytics to track revenue, cart abandonment, and conversion funnels. Official Website | WordPress.org Redirect Master – Smart SEO redirections for effortless domain migrations and 404 monitoring. Official Website Autobute – The complete Image SEO Suite for automatic attribute updates and accessibility. WordPress.org PricePress – Empower your store with dynamic pricing, BOGO deals, and strategic discount rules. WordPress.org ClaimPress – The most advanced warranty, refund, and exchange management system for WooCommerce. Official Website | WordPress.org DominoPost – Transform the classic editor with AI writing, table of contents, and auto-linking. WordPress.org BundlePress – Strategic product bundle builder for fixed, volume, and “Frequently Bought Together” deals. Official Website | WordPress.org ShippingGuard – Turn shipping headaches into a profit center by offering delivery protection at checkout. Official Website | WordPress.org MaxLimits – Intelligently scale your server’s memory limits and execution times with one click. Official Website | WordPress.org DominoPilot – Intelligent, context-aware AI chatbot assistant for immediate customer support. WordPress.org
Top keywords
- wordpress17×2.76%
- reset12×1.95%
- theme11×1.79%
- org10×1.63%
- wordpress org10×1.63%
- official7×1.14%
- official website7×1.14%
- resetify7×1.14%
- website7×1.14%
- content6×0.98%
- database6×0.98%
- official website wordpress6×0.98%
Simple Revisions Delete
Delete the revisions of your posts individually or all at once, either from the editor or through a bulk action. Works with both the block editor and the classic editor. What does it do? Simple Revisions Delete adds a discreet purge control next to the revisions counter of the post you are editing. One click and the revisions of that post are gone. It helps you keep a clean database by removing unnecessary post revisions. Unlike most similar plugins, it lets you delete the revisions of a specific post rather than wiping every revision of your site at once. The plugin blends into the WordPress admin, relies exclusively on core functions to delete revisions safely, and adds no settings page: there is nothing to configure. How does it work? In the block editor, a “Purge” button sits in the post status panel of the sidebar, right below the publishing options. It tells you how many revisions the post has and deletes them all in one request. In the classic editor, the same control appears in the Publish metabox, and each revision listed in the Revisions metabox gets its own “Delete” button. In the posts and pages list, a “Purge revisions” bulk action lets you clean up several posts at once. Everything happens through the WordPress REST API, so no page reload is needed. Without JavaScript, the classic editor control falls back to a regular form submission and the bulk action keeps working. What’s new in 2.0? The block editor integration has been rewritten from scratch. The previous version relied on jQuery and on the internal markup of the editor, which stopped working when Gutenberg 7.1 reorganised its DOM. The purge control is now a genuine editor plugin (PluginPostStatusInfo) reading and writing through a dedicated REST API, so it no longer depends on class names that can change at any release. The rest of the plugin has been rewritten too: one class per responsibility, no more inline and blocks, destructive actions moved off GET requests, native bulk action filters instead of injected jQuery, and an interface that works with a keyboard and a screen reader. See the plugin page NOTE: this plugin has no settings page, and needs none. Post type support The supported post types are post and page by default. Use the wpsrd_post_types_list filter to add your own or to remove the defaults: function bweb_wpsrd_add_post_types( $post_types ) { $post_types[] = 'additional-cpt'; $post_types[] = 'another-cpt'; return $post_types; } add_filter( 'wpsrd_post_types_list', 'bweb_wpsrd_add_post_types' ); Use get_post_types() if you want to support every custom post type at once. Custom user capability The capability required to delete revisions is delete_post. Override it with the wpsrd_capability filter: function bweb_wpsrd_capability() { return 'edit_post'; } add_filter( 'wpsrd_capability', 'bweb_wpsrd_capability' ); REST API The plugin registers three routes under the wpsrd/v1 namespace. All of them check that the post type is supported and that the current user holds the capability above for the requested post: GET /wpsrd/v1/posts/ /revisions — returns the number of revisions DELETE /wpsrd/v1/posts/ /revisions — deletes every revision of the post DELETE /wpsrd/v1/posts/ /revisions/ — deletes a single revision Each response returns the number of deleted revisions and the number of revisions left. Languages The plugin only holds a handful of sentences, easy to translate through its .po and .mo files. Available languages: English French German — thanks to mallard66 Dutch — thanks to jondor Want to add yours? Get in touch CHECK OUT MY OTHER PLUGINS Please ask for help or report bugs if anything goes wrong. It is the best way to make the whole community benefit from it!