Version Description
- Small fix, missing parameter for taxonomy.
Download this release
Release Info
Developer | fernandobt |
Plugin | List category posts |
Version | 0.19.2 |
Comparing to | |
See all releases |
Code changes from version 0.19.1 to 0.19.2
- list_cat_posts.php +6 -5
- readme.txt +8 -6
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.19.
|
7 |
Author: Fernando Briano
|
8 |
Author URI: http://picandocodigo.net/
|
9 |
*/
|
@@ -60,10 +60,10 @@ class ListCategoryPosts{
|
|
60 |
'class' => 'lcp_catlist',
|
61 |
'customfield_name' => '',
|
62 |
'customfield_value' =>'',
|
63 |
-
'customfield_display' =>''
|
|
|
64 |
), $atts);
|
65 |
|
66 |
-
|
67 |
$catlist_displayer = new CatListDisplayer($atts);
|
68 |
return $catlist_displayer->display();
|
69 |
|
@@ -80,8 +80,9 @@ Add Older Posts at bottom of List Category Post page
|
|
80 |
http://wordpress.stackexchange.com/questions/26398/add-older-posts-at-bottom-of-list-category-post-page
|
81 |
Include the latest post of a specific category on a matching page
|
82 |
http://wordpress.stackexchange.com/questions/26224/how-to-include-the-latest-post-of-a-specific-category-on-a-matching-page
|
83 |
-
|
84 |
-
http://wordpress.stackexchange.com/questions/
|
|
|
85 |
- i18n
|
86 |
- Pagination
|
87 |
- Simpler template system
|
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.19.2
|
7 |
Author: Fernando Briano
|
8 |
Author URI: http://picandocodigo.net/
|
9 |
*/
|
60 |
'class' => 'lcp_catlist',
|
61 |
'customfield_name' => '',
|
62 |
'customfield_value' =>'',
|
63 |
+
'customfield_display' =>'',
|
64 |
+
'taxonomy' => ''
|
65 |
), $atts);
|
66 |
|
|
|
67 |
$catlist_displayer = new CatListDisplayer($atts);
|
68 |
return $catlist_displayer->display();
|
69 |
|
80 |
http://wordpress.stackexchange.com/questions/26398/add-older-posts-at-bottom-of-list-category-post-page
|
81 |
Include the latest post of a specific category on a matching page
|
82 |
http://wordpress.stackexchange.com/questions/26224/how-to-include-the-latest-post-of-a-specific-category-on-a-matching-page
|
83 |
+
Getting the “more” tag to work with plugin-list-category-post
|
84 |
+
http://wordpress.stackexchange.com/questions/30376/getting-the-more-tag-to-work-with-plugin-list-category-post
|
85 |
+
- Fix the code for the WordPress Coding Standards: http://codex.wordpress.org/WordPress_Coding_Standards
|
86 |
- i18n
|
87 |
- Pagination
|
88 |
- Simpler template system
|
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.19.
|
8 |
|
9 |
== Description ==
|
10 |
List Category Posts allows you to list posts from a category into a post/page using the [catlist] shortcode.
|
@@ -15,17 +15,15 @@ Great to use WordPress as a CMS, and create pages with several categories posts.
|
|
15 |
|
16 |
The plugin includes a widget, which works pretty much the same as the plugin. Just add as many widgets as you want, and select all the available options from the Appearence > Widgets page.
|
17 |
|
18 |
-
Since version 0.18, **this plugins does not work on server with PHP 4**. If you're still using PHP 4 on your webhost, you should consider upgrading to PHP 5. WordPress 3.1 will be the last version to support PHP 4, from 3.2 and forward, only PHP 5 will be supported. You can still [download an older version of the plugin
|
19 |
|
20 |
Works correctly with WordPress 3.1 and default Twenty Ten theme
|
21 |
(http://wordpress.org/support/topic/399754)
|
22 |
|
23 |
**Usage**: `[catlist argument1=value1 argument2=value2]`
|
24 |
|
25 |
-
**Tell us how you use this plugin!**
|
26 |
-
http://foro.picandocodigo.net/discussion/261/do-you-like-list-category-posts-read-me
|
27 |
-
|
28 |
**Support the plugin**
|
|
|
29 |
If you've found the plugin useful, consider making a [donation via PayPal](http://picandocodigo.net/programacion/wordpress/list-category-posts-wordpress-plugin-english/ "Donate via PayPal") or visit my [Amazon Wishlist](http://www.amazon.com/gp/registry/wishlist/2HU1JYOF7DX5Q/ref=wl_web "Amazon Wishlist").
|
30 |
|
31 |
|
@@ -147,12 +145,16 @@ Template system has changed. Custom templates should be stored in WordPress them
|
|
147 |
|
148 |
== Changelog ==
|
149 |
|
|
|
|
|
|
|
150 |
= 0.19.1 =
|
151 |
* Added thumbnail to Widget.
|
152 |
* Added thumbnail link to post (http://picod.net/33).
|
153 |
|
154 |
= 0.19 =
|
155 |
-
This update is dedicated to S. Keller from Switzerland who gave me "The Ultimate Hitchhiker's Guide to the Galaxy" from my Amazon Wishlit in appreciation for the plugin. I am really enjoying the read :D. If you
|
|
|
156 |
* Fixed private post logic, not displaying post if private. Thanks Bainternet from WordPress Answers: http://wordpress.stackexchange.com/questions/12514/list-category-posts-not-showing-posts-marked-private-to-logged-in-users/12520#12520
|
157 |
* Added thumbnail_size parameter.
|
158 |
* Added support for custom taxonomies and also moved to the array call of get_posts. Coded by wsherliker, thanks! http://picod.net/32
|
4 |
Tags: list, categories, posts, cms
|
5 |
Requires at least: 2.8
|
6 |
Tested up to: 3.2.1
|
7 |
+
Stable tag: 0.19.2
|
8 |
|
9 |
== Description ==
|
10 |
List Category Posts allows you to list posts from a category into a post/page using the [catlist] shortcode.
|
15 |
|
16 |
The plugin includes a widget, which works pretty much the same as the plugin. Just add as many widgets as you want, and select all the available options from the Appearence > Widgets page.
|
17 |
|
18 |
+
Since version 0.18, **this plugins does not work on server with PHP 4**. If you're still using PHP 4 on your webhost, you should consider upgrading to PHP 5. WordPress 3.1 will be the last version to support PHP 4, from 3.2 and forward, only PHP 5 will be supported. You can still [download an older version of the plugin](https://wordpress.org/extend/plugins/list-category-posts/download/ "download an older version of the plugin") if you're using PHP 4.
|
19 |
|
20 |
Works correctly with WordPress 3.1 and default Twenty Ten theme
|
21 |
(http://wordpress.org/support/topic/399754)
|
22 |
|
23 |
**Usage**: `[catlist argument1=value1 argument2=value2]`
|
24 |
|
|
|
|
|
|
|
25 |
**Support the plugin**
|
26 |
+
|
27 |
If you've found the plugin useful, consider making a [donation via PayPal](http://picandocodigo.net/programacion/wordpress/list-category-posts-wordpress-plugin-english/ "Donate via PayPal") or visit my [Amazon Wishlist](http://www.amazon.com/gp/registry/wishlist/2HU1JYOF7DX5Q/ref=wl_web "Amazon Wishlist").
|
28 |
|
29 |
|
145 |
|
146 |
== Changelog ==
|
147 |
|
148 |
+
= 0.19.2 =
|
149 |
+
* Small fix, missing parameter for taxonomy.
|
150 |
+
|
151 |
= 0.19.1 =
|
152 |
* Added thumbnail to Widget.
|
153 |
* Added thumbnail link to post (http://picod.net/33).
|
154 |
|
155 |
= 0.19 =
|
156 |
+
This update is dedicated to S. Keller from Switzerland who gave me "The Ultimate Hitchhiker's Guide to the Galaxy" from my Amazon Wishlit in appreciation for the plugin. I am really enjoying the read :D. If you, like S would like to show your appreciation, here's my wishlist: http://www.amazon.com/gp/registry/wishlist/2HU1JYOF7DX5Q/ref=wl_web
|
157 |
+
|
158 |
* Fixed private post logic, not displaying post if private. Thanks Bainternet from WordPress Answers: http://wordpress.stackexchange.com/questions/12514/list-category-posts-not-showing-posts-marked-private-to-logged-in-users/12520#12520
|
159 |
* Added thumbnail_size parameter.
|
160 |
* Added support for custom taxonomies and also moved to the array call of get_posts. Coded by wsherliker, thanks! http://picod.net/32
|