Version Description
- 08/05/2019 add - terms relation AND added.
- 08/05/2019 add - share buttons added in layout editor.
- 08/05/2019 add - Horizontal line added in layout editor.
Download this release
Release Info
Developer | pickplugins |
Plugin | Post Grid |
Version | 2.0.33 |
Comparing to | |
See all releases |
Code changes from version 2.0.32 to 2.0.33
- includes/class-functions.php +13 -10
- includes/functions/functions-post-grid-meta-box.php +2 -2
- post-grid.php +2 -2
- readme.txt +8 -2
includes/class-functions.php
CHANGED
@@ -169,6 +169,17 @@ class class_post_grid_functions{
|
|
169 |
'dummy_html'=>'Lorem',
|
170 |
'css'=>'display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;',
|
171 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
|
173 |
),
|
174 |
|
@@ -364,11 +375,7 @@ class class_post_grid_functions{
|
|
364 |
),
|
365 |
|
366 |
//'zoom'=>'Zoom button',
|
367 |
-
|
368 |
-
'name'=>'Share button',
|
369 |
-
'dummy_html'=>'<i class="fa fa-facebook-square"></i> <i class="fa fa-twitter-square"></i> <i class="fa fa-google-plus-square"></i>',
|
370 |
-
'css'=>'display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;',
|
371 |
-
),
|
372 |
'five_star'=>array(
|
373 |
'name'=>'Five Star',
|
374 |
'dummy_html'=>'<i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i>',
|
@@ -384,11 +391,7 @@ class class_post_grid_functions{
|
|
384 |
'dummy_html'=>'<i class="fa fa-caret-down"></i>',
|
385 |
'css'=>'display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;',
|
386 |
),
|
387 |
-
|
388 |
-
'name'=>'Horizontal line',
|
389 |
-
'dummy_html'=>'<hr />',
|
390 |
-
'css'=>'display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;',
|
391 |
-
),
|
392 |
'html'=>array(
|
393 |
'name'=>'HTML',
|
394 |
'dummy_html'=>'HTML <b>goes</b> here.',
|
169 |
'dummy_html'=>'Lorem',
|
170 |
'css'=>'display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;',
|
171 |
),
|
172 |
+
'share_button'=>array(
|
173 |
+
'name'=>'Share button',
|
174 |
+
'dummy_html'=>'<i class="fa fa-facebook-square"></i> <i class="fa fa-twitter-square"></i> <i class="fa fa-google-plus-square"></i>',
|
175 |
+
'css'=>'display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;',
|
176 |
+
),
|
177 |
+
|
178 |
+
'hr'=>array(
|
179 |
+
'name'=>'Horizontal line',
|
180 |
+
'dummy_html'=>'<hr />',
|
181 |
+
'css'=>'display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;',
|
182 |
+
),
|
183 |
|
184 |
),
|
185 |
|
375 |
),
|
376 |
|
377 |
//'zoom'=>'Zoom button',
|
378 |
+
|
|
|
|
|
|
|
|
|
379 |
'five_star'=>array(
|
380 |
'name'=>'Five Star',
|
381 |
'dummy_html'=>'<i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i>',
|
391 |
'dummy_html'=>'<i class="fa fa-caret-down"></i>',
|
392 |
'css'=>'display: block;font-size: 13px;line-height: normal;padding: 5px 10px;text-align: left;',
|
393 |
),
|
394 |
+
|
|
|
|
|
|
|
|
|
395 |
'html'=>array(
|
396 |
'name'=>'HTML',
|
397 |
'dummy_html'=>'HTML <b>goes</b> here.',
|
includes/functions/functions-post-grid-meta-box.php
CHANGED
@@ -276,7 +276,7 @@ function post_grid_settings_tabs_content_query_post($tab, $post_id){
|
|
276 |
'id' => 'terms_relation',
|
277 |
'parent' => 'post_grid_meta_options[taxonomies]['.$taxonomy.']',
|
278 |
'title' => __('Terms relation','post-grid'),
|
279 |
-
'details' => __('Choose term relation.','post-grid'),
|
280 |
'type' => 'radio',
|
281 |
'for' => $taxonomy,
|
282 |
'multiple' => true,
|
@@ -285,7 +285,7 @@ function post_grid_settings_tabs_content_query_post($tab, $post_id){
|
|
285 |
'args' => array(
|
286 |
'IN'=>__('IN','post-grid'),
|
287 |
'NOT IN'=>__('NOT IN','post-grid'),
|
288 |
-
|
289 |
),
|
290 |
);
|
291 |
|
276 |
'id' => 'terms_relation',
|
277 |
'parent' => 'post_grid_meta_options[taxonomies]['.$taxonomy.']',
|
278 |
'title' => __('Terms relation','post-grid'),
|
279 |
+
'details' => __('Choose term relation. some option only available in pro','post-grid'),
|
280 |
'type' => 'radio',
|
281 |
'for' => $taxonomy,
|
282 |
'multiple' => true,
|
285 |
'args' => array(
|
286 |
'IN'=>__('IN','post-grid'),
|
287 |
'NOT IN'=>__('NOT IN','post-grid'),
|
288 |
+
'AND'=>__('AND','post-grid'),
|
289 |
),
|
290 |
);
|
291 |
|
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.
|
7 |
Author: PickPlugins
|
8 |
Author URI: https://www.pickplugins.com/
|
9 |
License: GPLv2 or later
|
@@ -27,7 +27,7 @@ class PostGrid{
|
|
27 |
define('post_grid_conatct_url', 'https://pickplugins.com/contact/' );
|
28 |
define('post_grid_qa_url', 'https://www.pickplugins.com/questions/' );
|
29 |
define('post_grid_plugin_name', 'Post Grid' );
|
30 |
-
define('post_grid_version', '2.0.
|
31 |
define('post_grid_customer_type', 'free' );
|
32 |
|
33 |
|
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.33
|
7 |
Author: PickPlugins
|
8 |
Author URI: https://www.pickplugins.com/
|
9 |
License: GPLv2 or later
|
27 |
define('post_grid_conatct_url', 'https://pickplugins.com/contact/' );
|
28 |
define('post_grid_qa_url', 'https://www.pickplugins.com/questions/' );
|
29 |
define('post_grid_plugin_name', 'Post Grid' );
|
30 |
+
define('post_grid_version', '2.0.33' );
|
31 |
define('post_grid_customer_type', 'free' );
|
32 |
|
33 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
Donate link: https://www.pickplugins.com/item/post-grid-create-awesome-grid-from-any-post-type-for-wordpress/?ref=wordpress.org
|
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.
|
7 |
-
Stable tag: 2.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -104,6 +104,12 @@ then paste this shortcode anywhere in your page to display grid<br />
|
|
104 |
|
105 |
== Changelog ==
|
106 |
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
= 2.0.32 =
|
108 |
* 05/05/2019 remove - removed some unnecessary script and css files.
|
109 |
|
3 |
Donate link: https://www.pickplugins.com/item/post-grid-create-awesome-grid-from-any-post-type-for-wordpress/?ref=wordpress.org
|
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.2
|
7 |
+
Stable tag: 2.0.33
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
104 |
|
105 |
== Changelog ==
|
106 |
|
107 |
+
= 2.0.33 =
|
108 |
+
* 08/05/2019 add - terms relation AND added.
|
109 |
+
* 08/05/2019 add - share buttons added in layout editor.
|
110 |
+
* 08/05/2019 add - Horizontal line added in layout editor.
|
111 |
+
|
112 |
+
|
113 |
= 2.0.32 =
|
114 |
* 05/05/2019 remove - removed some unnecessary script and css files.
|
115 |
|