List category posts - Version 0.83.1

Version Description

  • Fixes bug with order parameter after refactor: https://wordpress.org/support/topic/notice-undefined-variable-params/
Download this release

Release Info

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

Code changes from version 0.83 to 0.83.1

include/lcp-parameters.php CHANGED
@@ -288,7 +288,7 @@ class LcpParameters{
288
  }
289
 
290
  private function lcp_order($order) {
291
- if( get_option('lcp_order') && $params['order'] === ''){
292
  return get_option('lcp_order');
293
  }
294
  return $order;
288
  }
289
 
290
  private function lcp_order($order) {
291
+ if( get_option('lcp_order') && $order === '') {
292
  return get_option('lcp_order');
293
  }
294
  return $order;
list-category-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 by category in 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, the number of posts to display and many more parameters. You can use [catlist] as many times as needed with different arguments. Usage: [catlist argument1=value1 argument2=value2].
6
- Version: 0.83
7
  Author: Fernando Briano
8
  Author URI: http://fernandobriano.com
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 by category in 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, the number of posts to display and many more parameters. You can use [catlist] as many times as needed with different arguments. Usage: [catlist argument1=value1 argument2=value2].
6
+ Version: 0.83.1
7
  Author: Fernando Briano
8
  Author URI: http://fernandobriano.com
9
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: list, categories, posts, cms
5
  Requires at least: 3.3
6
  Tested up to: 5.4.2
7
  Requires PHP: 5.4
8
- Stable tag: 0.83
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -232,6 +232,10 @@ Template system has changed. Custom templates should be stored in WordPress them
232
 
233
  == Changelog ==
234
 
 
 
 
 
235
  = 0.83 =
236
 
237
  This is a big release since @zymeth25 and I have been doing lots of refactoring based on maintainability, code quality and testing. It means the code is much cleaner and easier to maintain. So fixing bugs or adding new features should be easier now. If you find any issues, please report them on GitHub (https://github.com/picandocodigo/List-Category-Posts/issues).
5
  Requires at least: 3.3
6
  Tested up to: 5.4.2
7
  Requires PHP: 5.4
8
+ Stable tag: 0.83.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
232
 
233
  == Changelog ==
234
 
235
+ = 0.83.1 =
236
+
237
+ * Fixes bug with order parameter after refactor: https://wordpress.org/support/topic/notice-undefined-variable-params/
238
+
239
  = 0.83 =
240
 
241
  This is a big release since @zymeth25 and I have been doing lots of refactoring based on maintainability, code quality and testing. It means the code is much cleaner and easier to maintain. So fixing bugs or adding new features should be easier now. If you find any issues, please report them on GitHub (https://github.com/picandocodigo/List-Category-Posts/issues).