List category posts - Version 0.7.1

Version Description

  • Fixed uber stupid bug with offset... Sorry about that!
Download this release

Release Info

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

Code changes from version 0.7 to 0.7.1

Files changed (2) hide show
  1. list_cat_posts.php +2 -2
  2. readme.txt +4 -1
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.7
7
  Author: Fernando Briano
8
  Author URI: http://picandocodigo.net/wordpress/
9
  */
@@ -40,7 +40,7 @@ function catlist_func($atts, $content=null) {
40
  'excerpt' => 'no',
41
  'exclude' => '0',
42
  'excludeposts' => '0',
43
- 'offset' => '4',
44
  'catlink' => 'no'
45
  ), $atts);
46
  return list_category_posts($atts);
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.7.1
7
  Author: Fernando Briano
8
  Author URI: http://picandocodigo.net/wordpress/
9
  */
40
  'excerpt' => 'no',
41
  'exclude' => '0',
42
  'excludeposts' => '0',
43
+ 'offset' => '0',
44
  'catlink' => 'no'
45
  ), $atts);
46
  return list_category_posts($atts);
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.6
6
  Tested up to: 2.9
7
- Stable tag: 0.7
8
 
9
  == Description ==
10
  List Category Posts is a simple WordPress plugin which 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. Great to use WordPress as a CMS, and create pages with several categories posts.
@@ -82,6 +82,9 @@ Your comments and feedback are welcome at: http://picandocodigo.net/programacion
82
 
83
  == Changelog ==
84
 
 
 
 
85
  = 0.7 =
86
  * Exclude posts. Contribution by acub.
87
  * Offset parameter on shortcode to start listing posts with an offset. Contribution by Levi Vasquez
4
  Tags: list, categories, posts, cms
5
  Requires at least: 2.6
6
  Tested up to: 2.9
7
+ Stable tag: 0.7.1
8
 
9
  == Description ==
10
  List Category Posts is a simple WordPress plugin which 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. Great to use WordPress as a CMS, and create pages with several categories posts.
82
 
83
  == Changelog ==
84
 
85
+ = 0.7.1 =
86
+ * Fixed uber stupid bug with offset... Sorry about that!
87
+
88
  = 0.7 =
89
  * Exclude posts. Contribution by acub.
90
  * Offset parameter on shortcode to start listing posts with an offset. Contribution by Levi Vasquez