Post Grid - Version 2.0.76

Version Description

  • 2021-02-15 add - lazy load image alt text added
Download this release

Release Info

Developer pickplugins
Plugin Icon 128x128 Post Grid
Version 2.0.76
Comparing to
See all releases

Code changes from version 2.0.75 to 2.0.76

Files changed (3) hide show
  1. post-grid.php +2 -2
  2. readme.txt +5 -1
  3. templates/post-grid-hook.php +1 -1
post-grid.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Post Grid by PickPlugins
4
  Plugin URI: https://www.pickplugins.com/item/post-grid-create-awesome-grid-from-any-post-type-for-wordpress/
5
  Description: Awesome post grid for query post from any post type and display on grid.
6
- Version: 2.0.75
7
  Author: PickPlugins
8
  Author URI: https://www.pickplugins.com/
9
  License: GPLv2 or later
@@ -21,7 +21,7 @@ if( !class_exists( 'PostGrid' )){
21
  define('post_grid_plugin_dir', plugin_dir_path(__FILE__));
22
  define('post_grid_plugin_basename', plugin_basename(__FILE__));
23
  define('post_grid_plugin_name', 'Post Grid');
24
- define('post_grid_version', '2.0.75');
25
  //define('post_grid_server_url', 'http://localhost/wp/');
26
  define('post_grid_server_url', 'https://www.pickplugins.com/demo/post-grid/');
27
 
3
  Plugin Name: Post Grid by PickPlugins
4
  Plugin URI: https://www.pickplugins.com/item/post-grid-create-awesome-grid-from-any-post-type-for-wordpress/
5
  Description: Awesome post grid for query post from any post type and display on grid.
6
+ Version: 2.0.76
7
  Author: PickPlugins
8
  Author URI: https://www.pickplugins.com/
9
  License: GPLv2 or later
21
  define('post_grid_plugin_dir', plugin_dir_path(__FILE__));
22
  define('post_grid_plugin_basename', plugin_basename(__FILE__));
23
  define('post_grid_plugin_name', 'Post Grid');
24
+ define('post_grid_version', '2.0.76');
25
  //define('post_grid_server_url', 'http://localhost/wp/');
26
  define('post_grid_server_url', 'https://www.pickplugins.com/demo/post-grid/');
27
 
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: 5.6
7
- Stable tag: 2.0.75
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -222,6 +222,10 @@ then paste this shortcode anywhere in your page to display grid<br />
222
 
223
  == Changelog ==
224
 
 
 
 
 
225
  = 2.0.75 =
226
  * 2021-01-23 add - taxonomy parameter for archive page for pro version integration.
227
 
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: 5.6
7
+ Stable tag: 2.0.76
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
222
 
223
  == Changelog ==
224
 
225
+ = 2.0.76 =
226
+ * 2021-02-15 add - lazy load image alt text added
227
+
228
+
229
  = 2.0.75 =
230
  * 2021-01-23 add - taxonomy parameter for archive page for pro version integration.
231
 
templates/post-grid-hook.php CHANGED
@@ -18,7 +18,7 @@ function post_grid_main_lazy($atts){
18
 
19
 
20
  ?>
21
- <div id="post-grid-lazy-<?php echo $grid_id; ?>" class="post-grid-lazy"><img src="<?php echo $lazy_load_image_src; ?>"/></div>
22
  <script>
23
  jQuery('#post-grid-lazy-<?php echo $grid_id; ?>').ready(function($){
24
  jQuery('#post-grid-lazy-<?php echo $grid_id; ?>').fadeOut();
18
 
19
 
20
  ?>
21
+ <div id="post-grid-lazy-<?php echo $grid_id; ?>" class="post-grid-lazy"><img alt="<?php echo __('Post Grid lazy load', 'post-grid');?>" src="<?php echo $lazy_load_image_src; ?>"/></div>
22
  <script>
23
  jQuery('#post-grid-lazy-<?php echo $grid_id; ?>').ready(function($){
24
  jQuery('#post-grid-lazy-<?php echo $grid_id; ?>').fadeOut();