Version Description
- Add WordPress 5.6 support
Download this release
Release Info
Developer | techlabpro1 |
Plugin | The Post Grid |
Version | 2.3.6.2 |
Comparing to | |
See all releases |
Code changes from version 2.3.6.1 to 2.3.6.2
- README.txt +5 -2
- lib/classes/RtTpgNotice.php +1 -1
- the-post-grid.php +10 -10
README.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: techlabpro1
|
|
3 |
Donate link:
|
4 |
Tags: post grid, content grid, post display, post format, post view, blog display, news display, post
|
5 |
Requires at least: 4.5
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 2.3.6.
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -140,6 +140,9 @@ For any bug or suggestion please mail support@radiustheme.com
|
|
140 |
|
141 |
== Changelog ==
|
142 |
|
|
|
|
|
|
|
143 |
= 2.3.6.1 =
|
144 |
* Promo setup
|
145 |
|
3 |
Donate link:
|
4 |
Tags: post grid, content grid, post display, post format, post view, blog display, news display, post
|
5 |
Requires at least: 4.5
|
6 |
+
Tested up to: 5.6
|
7 |
+
Stable tag: 2.3.6.2
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
140 |
|
141 |
== Changelog ==
|
142 |
|
143 |
+
= 2.3.6.2 =
|
144 |
+
* Add WordPress 5.6 support
|
145 |
+
|
146 |
= 2.3.6.1 =
|
147 |
* Promo setup
|
148 |
|
lib/classes/RtTpgNotice.php
CHANGED
@@ -32,7 +32,7 @@ if ( ! class_exists( 'RtTpgNotice' ) ):
|
|
32 |
?>
|
33 |
<div class="notice notice-info is-dismissible" data-rttpgdismissable="rttpg_bf_2020"
|
34 |
style="display:grid;grid-template-columns: 100px auto;padding-top: 25px; padding-bottom: 22px;">
|
35 |
-
<img alt="
|
36 |
src="<?php echo rtTPG()->assetsUrl . 'images/notice.png'; ?>" width="74px"
|
37 |
height="74px" style="grid-row: 1 / 4; align-self: center;justify-self: center"/>
|
38 |
<h3 style="margin:0;"><?php echo sprintf( '%s Black Friday Deal!!', $plugin_name ) ?></h3>
|
32 |
?>
|
33 |
<div class="notice notice-info is-dismissible" data-rttpgdismissable="rttpg_bf_2020"
|
34 |
style="display:grid;grid-template-columns: 100px auto;padding-top: 25px; padding-bottom: 22px;">
|
35 |
+
<img alt="Smart Slider 3"
|
36 |
src="<?php echo rtTPG()->assetsUrl . 'images/notice.png'; ?>" width="74px"
|
37 |
height="74px" style="grid-row: 1 / 4; align-self: center;justify-self: center"/>
|
38 |
<h3 style="margin:0;"><?php echo sprintf( '%s Black Friday Deal!!', $plugin_name ) ?></h3>
|
the-post-grid.php
CHANGED
@@ -4,20 +4,20 @@
|
|
4 |
* Plugin URI: http://demo.radiustheme.com/wordpress/plugins/the-post-grid/
|
5 |
* Description: Fast & Easy way to display WordPress post in Grid, List & Isotope view ( filter by category, tag, author..) without a single line of coding.
|
6 |
* Author: RadiusTheme
|
7 |
-
* Version: 2.3.6.
|
8 |
* Text Domain: the-post-grid
|
9 |
* Domain Path: /languages
|
10 |
* Author URI: https://radiustheme.com/
|
11 |
*/
|
12 |
-
if (
|
13 |
-
|
14 |
}
|
15 |
|
16 |
-
$plugin_data = get_file_data(
|
17 |
-
define(
|
18 |
-
define(
|
19 |
-
define(
|
20 |
-
define(
|
21 |
-
define(
|
22 |
|
23 |
-
require(
|
4 |
* Plugin URI: http://demo.radiustheme.com/wordpress/plugins/the-post-grid/
|
5 |
* Description: Fast & Easy way to display WordPress post in Grid, List & Isotope view ( filter by category, tag, author..) without a single line of coding.
|
6 |
* Author: RadiusTheme
|
7 |
+
* Version: 2.3.6.2
|
8 |
* Text Domain: the-post-grid
|
9 |
* Domain Path: /languages
|
10 |
* Author URI: https://radiustheme.com/
|
11 |
*/
|
12 |
+
if (!defined('ABSPATH')) {
|
13 |
+
exit;
|
14 |
}
|
15 |
|
16 |
+
$plugin_data = get_file_data(__FILE__, ['Version' => 'Version'], false);
|
17 |
+
define('RT_THE_POST_GRID_VERSION', $plugin_data['Version']);
|
18 |
+
define('RT_THE_POST_GRID_PLUGIN_PATH', dirname(__FILE__));
|
19 |
+
define('RT_THE_POST_GRID_PLUGIN_ACTIVE_FILE_NAME', plugin_basename(__FILE__));
|
20 |
+
define('RT_THE_POST_GRID_PLUGIN_URL', plugins_url('', __FILE__));
|
21 |
+
define('RT_THE_POST_GRID_LANGUAGE_PATH', dirname(plugin_basename(__FILE__)) . '/languages');
|
22 |
|
23 |
+
require('lib/init.php');
|