Post Grid - Version 2.0.9

Version Description

  • 24/06/2016 fix - minor php issue fixed.
Download this release

Release Info

Developer paratheme
Plugin Icon 128x128 Post Grid
Version 2.0.9
Comparing to
See all releases

Code changes from version 2.0.8 to 2.0.9

Files changed (3) hide show
  1. grid-items/nav-top.php +1 -1
  2. post-grid.php +2 -2
  3. readme.txt +4 -1
grid-items/nav-top.php CHANGED
@@ -133,7 +133,7 @@ $(".nav-filter").on( "click", ".filter", function() {
133
 
134
  if(isset($_GET['keyword'])){
135
 
136
- $keyword = $_GET['keyword'];
137
 
138
  }
139
 
133
 
134
  if(isset($_GET['keyword'])){
135
 
136
+ $keyword = sanitize_text_field($_GET['keyword']);
137
 
138
  }
139
 
post-grid.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Post Grid
4
  Plugin URI: http://pickplugins.com
5
  Description: Awesome post grid for query post from any post type and display on grid.
6
- Version: 2.0.8
7
  Author: pickplugins
8
  Author URI: http://pickplugins.com
9
  License: GPLv2 or later
@@ -27,7 +27,7 @@ class PostGrid{
27
  define('post_grid_conatct_url', 'http://pickplugins.com/contact/' );
28
  define('post_grid_qa_url', 'http://www.pickplugins.com/questions/' );
29
  define('post_grid_plugin_name', 'Post Grid' );
30
- define('post_grid_version', '2.0.8' );
31
  define('post_grid_customer_type', 'free' );
32
  define('post_grid_share_url', 'https://wordpress.org/plugins/post-grid/' );
33
  define('post_grid_tutorial_video_url', '//www.youtube.com/embed/WynnnEl0ncM' );
3
  Plugin Name: Post Grid
4
  Plugin URI: http://pickplugins.com
5
  Description: Awesome post grid for query post from any post type and display on grid.
6
+ Version: 2.0.9
7
  Author: pickplugins
8
  Author URI: http://pickplugins.com
9
  License: GPLv2 or later
27
  define('post_grid_conatct_url', 'http://pickplugins.com/contact/' );
28
  define('post_grid_qa_url', 'http://www.pickplugins.com/questions/' );
29
  define('post_grid_plugin_name', 'Post Grid' );
30
+ define('post_grid_version', '2.0.9' );
31
  define('post_grid_customer_type', 'free' );
32
  define('post_grid_share_url', 'https://wordpress.org/plugins/post-grid/' );
33
  define('post_grid_tutorial_video_url', '//www.youtube.com/embed/WynnnEl0ncM' );
readme.txt CHANGED
@@ -4,7 +4,7 @@
4
  Tags: post grid, grid, custom post grid, post type grid, grid display, category filter, custom post, filter, filtering, grid, layout, list, masonry, post, post filter, post layout, taxonomy, taxonomy filter,
5
  Requires at least: 3.8
6
  Tested up to: 4.5.2
7
- Stable tag: 2.0.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -96,6 +96,9 @@ then paste this shortcode anywhere in your page to display grid<br />
96
 
97
  == Changelog ==
98
 
 
 
 
99
  = 2.0.8 =
100
  * 14/06/2016 fix - owl.carousel conflict issue fixed.
101
 
4
  Tags: post grid, grid, custom post grid, post type grid, grid display, category filter, custom post, filter, filtering, grid, layout, list, masonry, post, post filter, post layout, taxonomy, taxonomy filter,
5
  Requires at least: 3.8
6
  Tested up to: 4.5.2
7
+ Stable tag: 2.0.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
96
 
97
  == Changelog ==
98
 
99
+ = 2.0.9 =
100
+ * 24/06/2016 fix - minor php issue fixed.
101
+
102
  = 2.0.8 =
103
  * 14/06/2016 fix - owl.carousel conflict issue fixed.
104