Version Description
- Removed var_dump... (Sorry about that)
Download this release
Release Info
Developer | fernandobt |
Plugin | List category posts |
Version | 0.21.2 |
Comparing to | |
See all releases |
Code changes from version 0.21.1 to 0.21.2
- include/CatList.php +0 -1
- list_cat_posts.php +1 -1
- readme.txt +9 -1
include/CatList.php
CHANGED
@@ -63,7 +63,6 @@ class CatList{
|
|
63 |
$args['tag'] = $this->params['tags'];
|
64 |
}
|
65 |
|
66 |
-
var_dump($args);
|
67 |
$this->lcp_categories_posts = get_posts($args);
|
68 |
}
|
69 |
|
63 |
$args['tag'] = $this->params['tags'];
|
64 |
}
|
65 |
|
|
|
66 |
$this->lcp_categories_posts = get_posts($args);
|
67 |
}
|
68 |
|
list_cat_posts.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: List category posts
|
4 |
Plugin URI: http://picandocodigo.net/programacion/wordpress/list-category-posts-wordpress-plugin-english/
|
5 |
Description: List Category Posts allows you to list posts from a category into 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, and the number of posts to display. You can use [catlist] as many times as needed with different arguments. Usage: [catlist argument1=value1 argument2=value2].
|
6 |
-
Version: 0.21.
|
7 |
Author: Fernando Briano
|
8 |
Author URI: http://picandocodigo.net/
|
9 |
*/
|
3 |
Plugin Name: List category posts
|
4 |
Plugin URI: http://picandocodigo.net/programacion/wordpress/list-category-posts-wordpress-plugin-english/
|
5 |
Description: List Category Posts allows you to list posts from a category into 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, and the number of posts to display. You can use [catlist] as many times as needed with different arguments. Usage: [catlist argument1=value1 argument2=value2].
|
6 |
+
Version: 0.21.2
|
7 |
Author: Fernando Briano
|
8 |
Author URI: http://picandocodigo.net/
|
9 |
*/
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate Link: http://picandocodigo.net/programacion/wordpress/list-category-posts
|
|
4 |
Tags: list, categories, posts, cms
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 3.2.1
|
7 |
-
Stable tag: 0.21.
|
8 |
|
9 |
== Description ==
|
10 |
List Category Posts allows you to list posts from a category into a post/page using the [catlist] shortcode.
|
@@ -158,6 +158,14 @@ Template system has changed. Custom templates should be stored in WordPress them
|
|
158 |
|
159 |
== Changelog ==
|
160 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
= 0.21 =
|
162 |
* Added 'thumbnail_class' parameter, so you can set a CSS class to the thumbnail and style it.
|
163 |
|
4 |
Tags: list, categories, posts, cms
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 3.2.1
|
7 |
+
Stable tag: 0.21.2
|
8 |
|
9 |
== Description ==
|
10 |
List Category Posts allows you to list posts from a category into a post/page using the [catlist] shortcode.
|
158 |
|
159 |
== Changelog ==
|
160 |
|
161 |
+
= 0.21.2 =
|
162 |
+
* Removed var_dump... (Sorry about that)
|
163 |
+
|
164 |
+
= 0.21.1 =
|
165 |
+
* Small fixes:
|
166 |
+
* Used "empty()" function for some Strings instead of evaluating isset() and != ''.
|
167 |
+
* Include parameters on the get_posts args only when they are set (post_parent among others).
|
168 |
+
|
169 |
= 0.21 =
|
170 |
* Added 'thumbnail_class' parameter, so you can set a CSS class to the thumbnail and style it.
|
171 |
|