Version Description
- 2018/05/09
- WebFactory took over development
- numerous bug fixes and improvements
- 30,000 installations; 199,000 downloads
Download this release
Release Info
Developer | WebFactory |
Plugin | WP Reset – Fastest WordPress Reset Plugin |
Version | 1.1 |
Comparing to | |
See all releases |
Code changes from version 1.11 to 1.1
- readme.txt +1 -1
- wp-reset.php +5 -0
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Contributors: WebFactory
|
|
4 |
Requires at least: 4.0
|
5 |
Requires PHP: 5.2
|
6 |
Tested up to: 4.9
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
4 |
Requires at least: 4.0
|
5 |
Requires PHP: 5.2
|
6 |
Tested up to: 4.9
|
7 |
+
Stable tag: 1.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
wp-reset.php
CHANGED
@@ -286,6 +286,11 @@ class WPReset {
|
|
286 |
echo '<input id="wp_reset_confirm" type="text" name="wp_reset_confirm" placeholder="' . esc_attr__('Type in "reset"', 'wp-reset'). '" value="" autocomplete="off"> ';
|
287 |
echo '<input id="wp_reset_submit" type="submit" name="submit" class="button-primary" value="' . __('Reset WordPress', 'wp-reset') . '">';
|
288 |
echo '</form>';
|
|
|
|
|
|
|
|
|
|
|
289 |
echo '</div>';
|
290 |
echo '</div>';
|
291 |
} // admin_page
|
286 |
echo '<input id="wp_reset_confirm" type="text" name="wp_reset_confirm" placeholder="' . esc_attr__('Type in "reset"', 'wp-reset'). '" value="" autocomplete="off"> ';
|
287 |
echo '<input id="wp_reset_submit" type="submit" name="submit" class="button-primary" value="' . __('Reset WordPress', 'wp-reset') . '">';
|
288 |
echo '</form>';
|
289 |
+
echo '</div>';
|
290 |
+
|
291 |
+
echo '<div class="card">';
|
292 |
+
echo '<h2>' . __('Please help us continue developing WP Reset', 'wp-reset') . '</h2>';
|
293 |
+
echo '<p>By <a href="https://wordpress.org/support/plugin/wp-reset/reviews/#new-post" target="_blank">rating the plugin</a> (which takes about 30 seconds :)) you help us keep going! Your ratings will ensoure the plugin is kept maintained, up-to-date and safe.<br><br>Thank you for your time!</p>';
|
294 |
echo '</div>';
|
295 |
echo '</div>';
|
296 |
} // admin_page
|