List category posts - Version 0.22.2

Version Description

  • Fixed bug with the categorypage=yes param.
    • Tested with WordPress 3.3.
Download this release

Release Info

Developer fernandobt
Plugin Icon 128x128 List category posts
Version 0.22.2
Comparing to
See all releases

Code changes from version 0.22.1 to 0.22.2

Files changed (3) hide show
  1. include/CatList.php +1 -1
  2. list_cat_posts.php +1 -1
  3. readme.txt +6 -2
include/CatList.php CHANGED
@@ -69,7 +69,7 @@ class CatList{
69
 
70
  private function get_lcp_category(){
71
  if ( isset($this->params['categorypage']) && $this->params['categorypage'] == 'yes' ){
72
- $this->lcp_category_id = lcp_get_current_category();
73
  } elseif ( !empty($this->params['name']) ){
74
  if (preg_match('/,/', $this->params['name'])){
75
  $categories = '';
69
 
70
  private function get_lcp_category(){
71
  if ( isset($this->params['categorypage']) && $this->params['categorypage'] == 'yes' ){
72
+ $this->lcp_category_id = $this->lcp_get_current_category();
73
  } elseif ( !empty($this->params['name']) ){
74
  if (preg_match('/,/', $this->params['name'])){
75
  $categories = '';
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.22.1
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.22.2
7
  Author: Fernando Briano
8
  Author URI: http://picandocodigo.net/
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: 2.8
6
- Tested up to: 3.2.1
7
- Stable tag: 0.22.1
8
 
9
  == Description ==
10
  List Category Posts allows you to list posts from a category into a post/page using the [catlist] shortcode.
@@ -165,6 +165,10 @@ Template system has changed. Custom templates should be stored in WordPress them
165
 
166
  == Changelog ==
167
 
 
 
 
 
168
  = 0.22.1 =
169
  * Fixed accidentally deleted line which made the catlink=yes param not work.
170
 
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: 2.8
6
+ Tested up to: 3.3
7
+ Stable tag: 0.22.2
8
 
9
  == Description ==
10
  List Category Posts allows you to list posts from a category into a post/page using the [catlist] shortcode.
165
 
166
  == Changelog ==
167
 
168
+ = 0.22.2 =
169
+ * Fixed bug with the categorypage=yes param.
170
+ * Tested with WordPress 3.3.
171
+
172
  = 0.22.1 =
173
  * Fixed accidentally deleted line which made the catlink=yes param not work.
174