List category posts - Version 0.46.3

Version Description

  • Fix something that I broke on previous update for excerpt :S
Download this release

Release Info

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

Code changes from version 0.46.2 to 0.46.3

Files changed (3) hide show
  1. include/CatList.php +1 -2
  2. list_cat_posts.php +1 -1
  3. readme.txt +4 -1
include/CatList.php CHANGED
@@ -446,10 +446,9 @@ class CatList{
446
  default:
447
  if(!empty($this->params['excerpt_overwrite']) &&
448
  $this->params['excerpt_overwrite'] == 'yes'){
449
- //Content
450
  $lcp_excerpt = $this->lcp_trim_excerpt($single->post_content);
451
  } else {
452
- $lcp_excerpt = $this->lcp_trim_excerpt($single->post_content);
453
  }
454
  }
455
 
446
  default:
447
  if(!empty($this->params['excerpt_overwrite']) &&
448
  $this->params['excerpt_overwrite'] == 'yes'){
 
449
  $lcp_excerpt = $this->lcp_trim_excerpt($single->post_content);
450
  } else {
451
+ $lcp_excerpt = $this->lcp_trim_excerpt($single->post_excerpt);
452
  }
453
  }
454
 
list_cat_posts.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: List category posts
4
  Plugin URI: https://github.com/picandocodigo/List-Category-Posts
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.46.2
7
  Author: Fernando Briano
8
  Author URI: http://picandocodigo.net/
9
 
3
  Plugin Name: List category posts
4
  Plugin URI: https://github.com/picandocodigo/List-Category-Posts
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.46.3
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: 3.3
6
  Tested up to: 3.8.1
7
- Stable tag: 0.46.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -433,6 +433,9 @@ Template system has changed. Custom templates should be stored in WordPress them
433
 
434
  == Changelog ==
435
 
 
 
 
436
  = 0.46.2 =
437
  * Some fixes on displaying excerpt.
438
 
4
  Tags: list, categories, posts, cms
5
  Requires at least: 3.3
6
  Tested up to: 3.8.1
7
+ Stable tag: 0.46.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
433
 
434
  == Changelog ==
435
 
436
+ = 0.46.3 =
437
+ * Fix something that I broke on previous update for excerpt :S
438
+
439
  = 0.46.2 =
440
  * Some fixes on displaying excerpt.
441