Plugin Directory

Changeset 2694877


Ignore:
Timestamp:
03/16/2022 02:37:32 PM (4 years ago)
Author:
ClearcodeHQ
Message:

Version 1.0.1

Location:
cc-list-posts
Files:
11 added
5 edited

Legend:

Unmodified
Added
Removed
  • cc-list-posts/trunk/README.txt

    r1562616 r2694877  
    33Tags: wp_list_posts, wp_list_pages, wp_get_archives, shortcode, pagination, sitemap, Clearcode, PiotrPress
    44Requires at least: 4.7
    5 Tested up to: 4.7
     5Tested up to: 5.9.2
    66Stable tag: trunk
    77License: GPLv3
     
    7171== Changelog ==
    7272
     73= 1.0.1 =
     74*Release date: 16.03.2022*
     75
     76* Added PHP 8.0 support.
     77
    7378= 1.0.0 =
    7479*Release date: 15.12.2016*
  • cc-list-posts/trunk/class-plugin.php

    r1562616 r2694877  
    22
    33/*
    4     Copyright (C) 2016 by Clearcode <http://clearcode.cc>
     4    Copyright (C) 2022 by Clearcode <http://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
  • cc-list-posts/trunk/class-singleton.php

    r1562616 r2694877  
    22
    33/*
    4     Copyright (C) 2016 by Clearcode <http://clearcode.cc>
     4    Copyright (C) 2022 by Clearcode <http://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
     
    2727if ( ! class_exists( __NAMESPACE__ . '\Singleton' ) ) {
    2828    abstract class Singleton {
    29         final private function __clone() {}
    3029        protected function __construct() {}
    31 
    3230        public static function instance() {
    3331            static $instance = null;
  • cc-list-posts/trunk/functions.php

    r1562616 r2694877  
    22
    33/*
    4     Copyright (C) 2016 by Clearcode <http://clearcode.cc>
     4    Copyright (C) 2022 by Clearcode <http://clearcode.cc>
    55    and associates (see AUTHORS.txt file).
    66
  • cc-list-posts/trunk/plugin.php

    r1562616 r2694877  
    55    Plugin URI: https://wordpress.org/plugins/cc-list-posts
    66    Description: This plugin adds similar to `wp_list_pages`, missing function and shortcode `wp_list_posts` with pagination support.
    7     Version: 1.0.0
     7    Version: 1.0.1
    88    Author: Clearcode
    99    Author URI: https://clearcode.cc
     
    1313    License URI: http://www.gnu.org/licenses/gpl-3.0.txt
    1414
    15     Copyright (C) 2016 by Clearcode <http://clearcode.cc>
     15    Copyright (C) 2022 by Clearcode <http://clearcode.cc>
    1616    and associates (see AUTHORS.txt file).
    1717
Note: See TracChangeset for help on using the changeset viewer.