Version Description
- 2020/05/08
- Removes some debug code, whoopsie.
- 227,615 downloads
Download this release
Release Info
Developer | cleverplugins |
Plugin | Delete Duplicate Posts |
Version | 4.4.3.1 |
Comparing to | |
See all releases |
Code changes from version 4.4.3 to 4.4.3.1
- delete-duplicate-posts.php +1 -6
- readme.txt +6 -1
delete-duplicate-posts.php
CHANGED
@@ -5,7 +5,7 @@ Plugin Name: Delete Duplicate Posts
|
|
5 |
Plugin Script: delete-duplicate-posts.php
|
6 |
Plugin URI: https://cleverplugins.com
|
7 |
Description: Remove duplicate blogposts on your blog! Searches and removes duplicate posts and their post meta tags. You can delete posts, pages and other Custom Post Types enabled on your website.
|
8 |
-
Version: 4.4.3
|
9 |
Author: cleverplugins.com
|
10 |
Author URI: https://cleverplugins.com
|
11 |
Min WP Version: 4.7
|
@@ -587,11 +587,6 @@ if ( !class_exists( 'Delete_Duplicate_Posts' ) ) {
|
|
587 |
}
|
588 |
|
589 |
$options = self::get_options();
|
590 |
-
// @debug
|
591 |
-
error_log( '$options ' . print_r( $options, true ) );
|
592 |
-
$options = self::default_options();
|
593 |
-
// @debug
|
594 |
-
error_log( '$options ' . print_r( $options, true ) );
|
595 |
self::save_options( $options );
|
596 |
wp_clear_scheduled_hook( 'ddp_cron' );
|
597 |
self::log( __( 'Plugin activated.', 'delete-duplicate-posts' ) );
|
5 |
Plugin Script: delete-duplicate-posts.php
|
6 |
Plugin URI: https://cleverplugins.com
|
7 |
Description: Remove duplicate blogposts on your blog! Searches and removes duplicate posts and their post meta tags. You can delete posts, pages and other Custom Post Types enabled on your website.
|
8 |
+
Version: 4.4.3.1
|
9 |
Author: cleverplugins.com
|
10 |
Author URI: https://cleverplugins.com
|
11 |
Min WP Version: 4.7
|
587 |
}
|
588 |
|
589 |
$options = self::get_options();
|
|
|
|
|
|
|
|
|
|
|
590 |
self::save_options( $options );
|
591 |
wp_clear_scheduled_hook( 'ddp_cron' );
|
592 |
self::log( __( 'Plugin activated.', 'delete-duplicate-posts' ) );
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ License: GPLv2 or later
|
|
5 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
6 |
Requires at least: 4.7
|
7 |
Tested up to: 5.4.1
|
8 |
-
Stable tag: 4.4.3
|
9 |
Requires PHP: 5.6
|
10 |
|
11 |
Get rid of duplicate posts and pages on your blog!
|
@@ -39,6 +39,11 @@ You should restore the backup you took of your website before you ran this tool.
|
|
39 |
|
40 |
== Changelog ==
|
41 |
|
|
|
|
|
|
|
|
|
|
|
42 |
= 4.4.3 =
|
43 |
* 2020/05/07
|
44 |
* Plugin now looks for duplicates in posts and pages per default, no need to set it after activating plugin.
|
5 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
6 |
Requires at least: 4.7
|
7 |
Tested up to: 5.4.1
|
8 |
+
Stable tag: 4.4.3.1
|
9 |
Requires PHP: 5.6
|
10 |
|
11 |
Get rid of duplicate posts and pages on your blog!
|
39 |
|
40 |
== Changelog ==
|
41 |
|
42 |
+
= 4.4.3.1 =
|
43 |
+
* 2020/05/08
|
44 |
+
* Removes some debug code, whoopsie.
|
45 |
+
* 227,615 downloads
|
46 |
+
|
47 |
= 4.4.3 =
|
48 |
* 2020/05/07
|
49 |
* Plugin now looks for duplicates in posts and pages per default, no need to set it after activating plugin.
|