Version Description
- Fixed accidentally deleted line which made the catlink=yes param not work.
Download this release
Release Info
Developer | fernandobt |
Plugin | List category posts |
Version | 0.22.1 |
Comparing to | |
See all releases |
Code changes from version 0.22 to 0.22.1
- include/CatListDisplayer.php +1 -0
- list_cat_posts.php +1 -1
- readme.txt +4 -1
include/CatListDisplayer.php
CHANGED
@@ -54,6 +54,7 @@ class CatListDisplayer {
|
|
54 |
}
|
55 |
|
56 |
private function build_output($tag){
|
|
|
57 |
$this->lcp_output .= '<' . $tag;
|
58 |
if (isset($this->params['class'])): $this->lcp_output .= ' class="' . $this->params['class'] . '"'; endif;
|
59 |
$this->lcp_output .= '>';
|
54 |
}
|
55 |
|
56 |
private function build_output($tag){
|
57 |
+
$this->lcp_output .= $this->get_category_link('strong');
|
58 |
$this->lcp_output .= '<' . $tag;
|
59 |
if (isset($this->params['class'])): $this->lcp_output .= ' class="' . $this->params['class'] . '"'; endif;
|
60 |
$this->lcp_output .= '>';
|
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
|
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.1
|
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.22
|
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,9 @@ Template system has changed. Custom templates should be stored in WordPress them
|
|
165 |
|
166 |
== Changelog ==
|
167 |
|
|
|
|
|
|
|
168 |
= 0.22 =
|
169 |
* Added CSS "current" class hook for current post in the list: .current class attached to either the li or a tag of the currently viewed page in the said list. http://wordpress.stackexchange.com/q/35552/298
|
170 |
* Added *morelink* parameter, check Other notes for usage.
|
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 |
|
166 |
== Changelog ==
|
167 |
|
168 |
+
= 0.22.1 =
|
169 |
+
* Fixed accidentally deleted line which made the catlink=yes param not work.
|
170 |
+
|
171 |
= 0.22 =
|
172 |
* Added CSS "current" class hook for current post in the list: .current class attached to either the li or a tag of the currently viewed page in the said list. http://wordpress.stackexchange.com/q/35552/298
|
173 |
* Added *morelink* parameter, check Other notes for usage.
|