Plugin Directory

Changeset 3444499


Ignore:
Timestamp:
01/22/2026 02:35:17 AM (2 months ago)
Author:
pattihis
Message:

Version 2.1.4

Location:
clone-posts
Files:
22 added
4 edited

Legend:

Unmodified
Added
Removed
  • clone-posts/trunk/README.txt

    r3319548 r3444499  
    44Tags: clone posts, clone pages, duplicate posts, copy posts, post cloning
    55Requires at least: 5.3.0
    6 Tested up to: 6.8
     6Tested up to: 6.9
    77Requires PHP: 7.2
    8 Stable tag: 2.1.3
     8Stable tag: 2.1.4
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5858== Changelog ==
    5959
     60= 2.1.4 =
     61* Ensure compatibility with WP 6.9
     62* Fix wrong translation text domains
     63
    6064= 2.1.3 =
    6165* Ensure compatibility with WP 6.8
  • clone-posts/trunk/admin/partials/clone-posts-admin-display.php

    r3020135 r3444499  
    1515
    1616<div class="clone-posts_header">
    17     <h1><span class="dashicons dashicons-admin-page clone-posts"></span>&nbsp;<?php esc_html_e( 'Clone Posts Settings', 'link-juice-keeper' ); ?></h1>
     17    <h1><span class="dashicons dashicons-admin-page clone-posts"></span>&nbsp;<?php esc_html_e( 'Clone Posts Settings', 'clone-posts' ); ?></h1>
    1818</div>
    19 <h4><?php esc_html_e( 'Easily clone (duplicate) Posts, Pages and Custom Post Types.', 'link-juice-keeper' ); ?></h4>
     19<h4><?php esc_html_e( 'Easily clone (duplicate) Posts, Pages and Custom Post Types.', 'clone-posts' ); ?></h4>
    2020<div class="clone-posts_wrap">
    2121    <form method="post" action="options.php">
  • clone-posts/trunk/clone-posts.php

    r3319548 r3444499  
    1414 * Plugin URI:        http://wordpress.org/extend/plugins/clone-posts/
    1515 * Description:       Easily clone (duplicate) Posts, Pages and Custom Post Types, including their custom fields (post_meta).
    16  * Version:           2.1.3
     16 * Version:           2.1.4
    1717 * Requires at least: 5.3.0
    18  * Tested up to:      6.8
     18 * Tested up to:      6.9
    1919 * Requires PHP:      7.2
    2020 * Author:            George Pattichis
     
    5151 * Current plugin version.
    5252 */
    53 define( 'CLONE_POSTS_VERSION', '2.1.3' );
     53define( 'CLONE_POSTS_VERSION', '2.1.4' );
    5454
    5555/**
  • clone-posts/trunk/includes/class-clone-posts.php

    r3319548 r3444499  
    6767            $this->version = CLONE_POSTS_VERSION;
    6868        } else {
    69             $this->version = '2.1.3';
     69            $this->version = '2.1.4';
    7070        }
    7171        $this->plugin_name = 'clone-posts';
Note: See TracChangeset for help on using the changeset viewer.