Version Description
- Update lcp-widget.php for PHP 7 compatibility. Thanks @kenshin23!
Download this release
Release Info
Developer | fernandobt |
Plugin | List category posts |
Version | 0.69 |
Comparing to | |
See all releases |
Code changes from version 0.68 to 0.69
- include/lcp-widget.php +2 -2
- list-category-posts.php +1 -1
- readme.txt +8 -2
include/lcp-widget.php
CHANGED
@@ -7,7 +7,7 @@ require_once 'lcp-catlistdisplayer.php';
|
|
7 |
|
8 |
class ListCategoryPostsWidget extends WP_Widget{
|
9 |
|
10 |
-
function
|
11 |
$opts = array('description' => __('List posts from a specified category','list-category-posts') );
|
12 |
parent::__construct(false, $name = __('List Category Posts','list-category-posts'), $opts);
|
13 |
}
|
@@ -115,4 +115,4 @@ class ListCategoryPostsWidget extends WP_Widget{
|
|
115 |
}
|
116 |
}
|
117 |
|
118 |
-
add_action('widgets_init', create_function('', 'return register_widget("listCategoryPostsWidget");'));
|
7 |
|
8 |
class ListCategoryPostsWidget extends WP_Widget{
|
9 |
|
10 |
+
function __construct() {
|
11 |
$opts = array('description' => __('List posts from a specified category','list-category-posts') );
|
12 |
parent::__construct(false, $name = __('List Category Posts','list-category-posts'), $opts);
|
13 |
}
|
115 |
}
|
116 |
}
|
117 |
|
118 |
+
add_action('widgets_init', create_function('', 'return register_widget("listCategoryPostsWidget");'));
|
list-category-posts.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: List category posts
|
4 |
Plugin URI: https://github.com/picandocodigo/List-Category-Posts
|
5 |
Description: List Category Posts allows you to list posts by category in a post/page using the [catlist] shortcode. This shortcode accepts a category name or id, the order in which you want the posts to display, the number of posts to display and many more parameters. You can use [catlist] as many times as needed with different arguments. Usage: [catlist argument1=value1 argument2=value2].
|
6 |
-
Version: 0.
|
7 |
Author: Fernando Briano
|
8 |
Author URI: http://fernandobriano.com
|
9 |
|
3 |
Plugin Name: List category posts
|
4 |
Plugin URI: https://github.com/picandocodigo/List-Category-Posts
|
5 |
Description: List Category Posts allows you to list posts by category in a post/page using the [catlist] shortcode. This shortcode accepts a category name or id, the order in which you want the posts to display, the number of posts to display and many more parameters. You can use [catlist] as many times as needed with different arguments. Usage: [catlist argument1=value1 argument2=value2].
|
6 |
+
Version: 0.69
|
7 |
Author: Fernando Briano
|
8 |
Author URI: http://fernandobriano.com
|
9 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: fernandobt
|
|
3 |
Donate Link: http://picandocodigo.net/programacion/wordpress/list-category-posts-wordpress-plugin-english/#support
|
4 |
Tags: list, categories, posts, cms
|
5 |
Requires at least: 3.3
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -532,8 +532,14 @@ Template system has changed. Custom templates should be stored in WordPress them
|
|
532 |
|
533 |
== Changelog ==
|
534 |
|
|
|
|
|
|
|
|
|
535 |
= 0.68 =
|
|
|
536 |
Thanks @mmatthews1981, @ottadvantage and @mhoeher for their contributions on this version:
|
|
|
537 |
* Adds Alt Tag to thumbnail
|
538 |
* Handle child_categories flag correctly - https://github.com/picandocodigo/List-Category-Posts/pull/185
|
539 |
* Adds a default value to numberposts on plugin activation - https://github.com/picandocodigo/List-Category-Posts/pull/193
|
3 |
Donate Link: http://picandocodigo.net/programacion/wordpress/list-category-posts-wordpress-plugin-english/#support
|
4 |
Tags: list, categories, posts, cms
|
5 |
Requires at least: 3.3
|
6 |
+
Tested up to: 4.5.2
|
7 |
+
Stable tag: 0.69
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
532 |
|
533 |
== Changelog ==
|
534 |
|
535 |
+
= 0.69 =
|
536 |
+
|
537 |
+
* Update lcp-widget.php for PHP 7 compatibility. Thanks @kenshin23!
|
538 |
+
|
539 |
= 0.68 =
|
540 |
+
|
541 |
Thanks @mmatthews1981, @ottadvantage and @mhoeher for their contributions on this version:
|
542 |
+
|
543 |
* Adds Alt Tag to thumbnail
|
544 |
* Handle child_categories flag correctly - https://github.com/picandocodigo/List-Category-Posts/pull/185
|
545 |
* Adds a default value to numberposts on plugin activation - https://github.com/picandocodigo/List-Category-Posts/pull/193
|