Version Description
- Tested with WordPress 6.1-RC5 + Multisite
- Fully tested on PHP 7.4, 8.0, 8.1
- Removed function that could cause conflicts
Download this release
Release Info
Developer | iclyde |
Plugin | Duplicate Post |
Version | 1.3.3 |
Comparing to | |
See all releases |
Code changes from version 1.3.2 to 1.3.3
- analyst/src/helpers.php +0 -11
- copy-delete-posts.php +2 -2
- readme.txt +10 -7
analyst/src/helpers.php
CHANGED
@@ -71,14 +71,3 @@ if (! function_exists('analyst_require_template')) {
|
|
71 |
require analyst_templates_path($file);
|
72 |
}
|
73 |
}
|
74 |
-
|
75 |
-
if (! function_exists('dd')) {
|
76 |
-
/**
|
77 |
-
* Dump some data
|
78 |
-
*/
|
79 |
-
function dd ()
|
80 |
-
{
|
81 |
-
var_dump(func_get_args());
|
82 |
-
die();
|
83 |
-
}
|
84 |
-
}
|
71 |
require analyst_templates_path($file);
|
72 |
}
|
73 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
copy-delete-posts.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Copy & Delete Posts
|
5 |
* Plugin URI: https://copy-delete-posts.com
|
6 |
* Description: The best solution to easily make duplicates of your posts & pages, and delete them in one go.
|
7 |
-
* Version: 1.3.
|
8 |
* Author: Copy Delete Posts
|
9 |
* Author URI: https://copy-delete-posts.com/
|
10 |
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
@@ -30,7 +30,7 @@ analyst_init(array(
|
|
30 |
* @since 1.0.0
|
31 |
*/
|
32 |
// Plugin constants
|
33 |
-
define('CDP_VERSION', '1.3.
|
34 |
define('CDP_WP_VERSION', get_bloginfo('version'));
|
35 |
define('CDP_SCRIPT_DEBUG', false);
|
36 |
define('CDP_ROOT_DIR', __DIR__);
|
4 |
* Plugin Name: Copy & Delete Posts
|
5 |
* Plugin URI: https://copy-delete-posts.com
|
6 |
* Description: The best solution to easily make duplicates of your posts & pages, and delete them in one go.
|
7 |
+
* Version: 1.3.3
|
8 |
* Author: Copy Delete Posts
|
9 |
* Author URI: https://copy-delete-posts.com/
|
10 |
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
30 |
* @since 1.0.0
|
31 |
*/
|
32 |
// Plugin constants
|
33 |
+
define('CDP_VERSION', '1.3.3');
|
34 |
define('CDP_WP_VERSION', get_bloginfo('version'));
|
35 |
define('CDP_SCRIPT_DEBUG', false);
|
36 |
define('CDP_ROOT_DIR', __DIR__);
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: CopyDeletePosts, copydelete
|
3 |
Tags: Duplicate post, Copy posts, Copy pages, Duplicate posts, Duplicate pages, Clone posts, Clone pages, Delete posts, Delete pages, Duplicator, copy post, copy page
|
4 |
Requires at least: 4.6
|
5 |
-
Tested up to: 6.
|
6 |
-
Stable tag: 1.3.
|
7 |
License: GPLv3
|
8 |
Requires PHP: 5.6
|
9 |
|
@@ -176,6 +176,10 @@ Vietnamese: [Sao chép bài đăng, sao chép trang, sao chép bài đăng tùy
|
|
176 |
8. Copy from Gutenberg editor
|
177 |
|
178 |
== Changelog ==
|
|
|
|
|
|
|
|
|
179 |
|
180 |
= 1.3.2 =
|
181 |
* NEW: Added automatic creation of non-existing categories for subsite duplication
|
@@ -365,8 +369,7 @@ Vietnamese: [Sao chép bài đăng, sao chép trang, sao chép bài đăng tùy
|
|
365 |
* Initial release
|
366 |
|
367 |
== Upgrade Notice ==
|
368 |
-
= 1.3.
|
369 |
-
*
|
370 |
-
*
|
371 |
-
*
|
372 |
-
* Tested with WordPress 6.0.2 + Multisite (PHP 8)
|
2 |
Contributors: CopyDeletePosts, copydelete
|
3 |
Tags: Duplicate post, Copy posts, Copy pages, Duplicate posts, Duplicate pages, Clone posts, Clone pages, Delete posts, Delete pages, Duplicator, copy post, copy page
|
4 |
Requires at least: 4.6
|
5 |
+
Tested up to: 6.1
|
6 |
+
Stable tag: 1.3.3
|
7 |
License: GPLv3
|
8 |
Requires PHP: 5.6
|
9 |
|
176 |
8. Copy from Gutenberg editor
|
177 |
|
178 |
== Changelog ==
|
179 |
+
= 1.3.3 =
|
180 |
+
* Tested with WordPress 6.1-RC5 + Multisite
|
181 |
+
* Fully tested on PHP 7.4, 8.0, 8.1
|
182 |
+
* Removed function that could cause conflicts
|
183 |
|
184 |
= 1.3.2 =
|
185 |
* NEW: Added automatic creation of non-existing categories for subsite duplication
|
369 |
* Initial release
|
370 |
|
371 |
== Upgrade Notice ==
|
372 |
+
= 1.3.3 =
|
373 |
+
* Tested with WordPress 6.1-RC5 + Multisite
|
374 |
+
* Fully tested on PHP 7.4, 8.0, 8.1
|
375 |
+
* Removed function that could cause conflicts
|
|