Version Description
- Compatible with WordPress Version 4.9.5
=
Download this release
Release Info
Developer | nikunjsoni |
Plugin | Reset WP |
Version | 1.2 |
Comparing to | |
See all releases |
Code changes from version 1.1 to 1.2
- readme.txt +8 -2
- reset-wp.php +17 -2
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Donate link: http://www.nikunjsoni.co.in/donate
|
|
4 |
Tags: reset wp,reset-wp,reset,wp,wordpress,clean,cleaner,database,mysql,wp-admin,admin,plugin
|
5 |
License: GPLv2
|
6 |
Requires at least: 3.7
|
7 |
-
Tested up to: 4.
|
8 |
-
Stable tag: 1.
|
9 |
|
10 |
Resets the WP Database to the default installation. It deletes all content and custom changes. Resets only database not modify or delete any files.
|
11 |
|
@@ -52,6 +52,9 @@ Usage :
|
|
52 |
= 1.1 =
|
53 |
* Small Fix in $wpdb->prepare query. Compatible with WordPress Version 4.8.1
|
54 |
|
|
|
|
|
|
|
55 |
== Upgrade Notice ==
|
56 |
|
57 |
= 1.0 =
|
@@ -60,6 +63,9 @@ Usage :
|
|
60 |
= 1.1 =
|
61 |
* Small Fix in $wpdb->prepare query. Compatible with WordPress Version 4.8.1
|
62 |
|
|
|
|
|
|
|
63 |
== Frequently Asked Questions ==
|
64 |
|
65 |
You can submit it in http://www.nikunjsoni.co.in
|
4 |
Tags: reset wp,reset-wp,reset,wp,wordpress,clean,cleaner,database,mysql,wp-admin,admin,plugin
|
5 |
License: GPLv2
|
6 |
Requires at least: 3.7
|
7 |
+
Tested up to: 4.9.5
|
8 |
+
Stable tag: 1.2
|
9 |
|
10 |
Resets the WP Database to the default installation. It deletes all content and custom changes. Resets only database not modify or delete any files.
|
11 |
|
52 |
= 1.1 =
|
53 |
* Small Fix in $wpdb->prepare query. Compatible with WordPress Version 4.8.1
|
54 |
|
55 |
+
= 1.2 =
|
56 |
+
* Compatible with WordPress Version 4.9.5
|
57 |
+
|
58 |
== Upgrade Notice ==
|
59 |
|
60 |
= 1.0 =
|
63 |
= 1.1 =
|
64 |
* Small Fix in $wpdb->prepare query. Compatible with WordPress Version 4.8.1
|
65 |
|
66 |
+
= 1.2 =
|
67 |
+
* Compatible with WordPress Version 4.9.5
|
68 |
+
|
69 |
== Frequently Asked Questions ==
|
70 |
|
71 |
You can submit it in http://www.nikunjsoni.co.in
|
reset-wp.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Reset WP
|
4 |
Plugin URI: http://www.nikunjsoni.co.in
|
5 |
Description: It resets the WordPress database to the default installation. It deletes all content and custom changes. Resets only database not modify or delete any files.
|
6 |
-
Version: 1.
|
7 |
Author: Nikunj Soni
|
8 |
Author URI: http://www.nikunjsoni.co.in
|
9 |
Text Domain: Reset-WP
|
@@ -168,7 +168,7 @@ class ResetWP {
|
|
168 |
echo '<div class="error fade"><p><strong>Invalid wpnonce. Please try again.</strong></p></div>';
|
169 |
|
170 |
?>
|
171 |
-
<div class="wrap">
|
172 |
<div id="icon-tools" class="icon32"><br /></div>
|
173 |
<h2>Reset WP</h2>
|
174 |
<p><strong>After completing this reset operation, you will be automatically redirected to the dashboard.</strong></p>
|
@@ -193,6 +193,21 @@ class ResetWP {
|
|
193 |
|
194 |
</form>
|
195 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
196 |
<?php
|
197 |
}
|
198 |
}
|
3 |
Plugin Name: Reset WP
|
4 |
Plugin URI: http://www.nikunjsoni.co.in
|
5 |
Description: It resets the WordPress database to the default installation. It deletes all content and custom changes. Resets only database not modify or delete any files.
|
6 |
+
Version: 1.2
|
7 |
Author: Nikunj Soni
|
8 |
Author URI: http://www.nikunjsoni.co.in
|
9 |
Text Domain: Reset-WP
|
168 |
echo '<div class="error fade"><p><strong>Invalid wpnonce. Please try again.</strong></p></div>';
|
169 |
|
170 |
?>
|
171 |
+
<div class="wrap" style="min-height:700px">
|
172 |
<div id="icon-tools" class="icon32"><br /></div>
|
173 |
<h2>Reset WP</h2>
|
174 |
<p><strong>After completing this reset operation, you will be automatically redirected to the dashboard.</strong></p>
|
193 |
|
194 |
</form>
|
195 |
</div>
|
196 |
+
<table class="widefat" style="width:40%">
|
197 |
+
<thead>
|
198 |
+
<tr>
|
199 |
+
<th><strong>Note</strong></th>
|
200 |
+
</tr>
|
201 |
+
</thead>
|
202 |
+
<tbody id="the-list">
|
203 |
+
<tr>
|
204 |
+
<td>
|
205 |
+
If you enjoy this plugin,<br/> please give it 5 stars on WordPress:
|
206 |
+
<a title="Reset WP" target="_blank" href="https://wordpress.org/support/view/plugin-reviews/reset-wp">Rate the plugin</a>
|
207 |
+
</td>
|
208 |
+
</tr>
|
209 |
+
</tbody>
|
210 |
+
</table>
|
211 |
<?php
|
212 |
}
|
213 |
}
|