Version Description
- 13/05/2015 fix- license issue fixed.
Download this release
Release Info
Developer | paratheme |
Plugin | Post Grid |
Version | 1.7 |
Comparing to | |
See all releases |
Code changes from version 1.6 to 1.7
- includes/class-shortcodes.php +1 -8
- post-grid.php +2 -2
- readme.txt +7 -3
includes/class-shortcodes.php
CHANGED
@@ -16,8 +16,7 @@ class class_post_grid_shortcodes{
|
|
16 |
{
|
17 |
|
18 |
add_shortcode( 'post_grid', array( $this, 'post_grid_display' ) );
|
19 |
-
|
20 |
-
//add_action('admin_menu', array($this, 'create_menu'));
|
21 |
}
|
22 |
|
23 |
public function post_grid_display($atts, $content = null ) {
|
@@ -31,12 +30,6 @@ class class_post_grid_shortcodes{
|
|
31 |
$post_id = $atts['id'];
|
32 |
|
33 |
$post_grid_themes = get_post_meta( $post_id, 'post_grid_themes', true );
|
34 |
-
$post_grid_license_key = get_option('post_grid_license_key');
|
35 |
-
|
36 |
-
if(empty($post_grid_license_key))
|
37 |
-
{
|
38 |
-
return '<b>"'.post_grid_plugin_name.'" Error:</b> Please activate your license.';
|
39 |
-
}
|
40 |
|
41 |
$class_post_grid_functions = new class_post_grid_functions();
|
42 |
$post_grid_themes_dir = $class_post_grid_functions->post_grid_themes_dir();
|
16 |
{
|
17 |
|
18 |
add_shortcode( 'post_grid', array( $this, 'post_grid_display' ) );
|
19 |
+
|
|
|
20 |
}
|
21 |
|
22 |
public function post_grid_display($atts, $content = null ) {
|
30 |
$post_id = $atts['id'];
|
31 |
|
32 |
$post_grid_themes = get_post_meta( $post_id, 'post_grid_themes', true );
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
|
34 |
$class_post_grid_functions = new class_post_grid_functions();
|
35 |
$post_grid_themes_dir = $class_post_grid_functions->post_grid_themes_dir();
|
post-grid.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Post Grid
|
4 |
Plugin URI: http://paratheme.com
|
5 |
Description: Awesome post grid for query post from any post-type and display on grid.
|
6 |
-
Version: 1.
|
7 |
Author: paratheme
|
8 |
Author URI: http://paratheme.com
|
9 |
License: GPLv2 or later
|
@@ -27,7 +27,7 @@ class PostGrid{
|
|
27 |
define('post_grid_conatct_url', 'http://paratheme.com/contact/' );
|
28 |
define('post_grid_qa_url', 'http://paratheme.com/qa/' );
|
29 |
define('post_grid_plugin_name', 'Post Grid' );
|
30 |
-
define('post_grid_version', '1.
|
31 |
define('post_grid_customer_type', 'free' );
|
32 |
|
33 |
define('post_grid_share_url', 'https://wordpress.org/plugins/post-grid/' );
|
3 |
Plugin Name: Post Grid
|
4 |
Plugin URI: http://paratheme.com
|
5 |
Description: Awesome post grid for query post from any post-type and display on grid.
|
6 |
+
Version: 1.7
|
7 |
Author: paratheme
|
8 |
Author URI: http://paratheme.com
|
9 |
License: GPLv2 or later
|
27 |
define('post_grid_conatct_url', 'http://paratheme.com/contact/' );
|
28 |
define('post_grid_qa_url', 'http://paratheme.com/qa/' );
|
29 |
define('post_grid_plugin_name', 'Post Grid' );
|
30 |
+
define('post_grid_version', '1.7' );
|
31 |
define('post_grid_customer_type', 'free' );
|
32 |
|
33 |
define('post_grid_share_url', 'https://wordpress.org/plugins/post-grid/' );
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
-
=== Post Grid ===
|
2 |
Contributors: paratheme
|
3 |
Donate link: http://paratheme.com
|
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.2.
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -95,6 +95,10 @@ then paste this shortcode anywhere in your page to display grid<br />
|
|
95 |
|
96 |
== Changelog ==
|
97 |
|
|
|
|
|
|
|
|
|
98 |
= 1.6 =
|
99 |
* 13/05/2015 add- Custom CSS box.
|
100 |
* 13/05/2015 edit- Improved Grid Builder.
|
1 |
+
=== Post Grid ===
|
2 |
Contributors: paratheme
|
3 |
Donate link: http://paratheme.com
|
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.2.4
|
7 |
+
Stable tag: 1.7
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
95 |
|
96 |
== Changelog ==
|
97 |
|
98 |
+
|
99 |
+
= 1.7 =
|
100 |
+
* 13/05/2015 fix- license issue fixed.
|
101 |
+
|
102 |
= 1.6 =
|
103 |
* 13/05/2015 add- Custom CSS box.
|
104 |
* 13/05/2015 edit- Improved Grid Builder.
|