PluginProbe
The Post Grid – Shortcode, Gutenberg Blocks and Elementor Addon for Post Grid / 4.1.3
The Post Grid – Shortcode, Gutenberg Blocks and Elementor Addon for Post Grid v4.1.3
7.9.4 7.9.3 7.9.2 trunk 4.0.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.1.5 4.2.0 4.2.1 4.2.2 4.2.3 5.0.0 5.0.1 5.0.2 5.0.3 5.0.4 All 87 releases
the-post-grid / the-post-grid.php
the-post-grid.php
30 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Plugin Name: The Post Grid
5 * Plugin URI: http://demo.radiustheme.com/wordpress/plugins/the-post-grid/
6 * Description: Fast & Easy way to display WordPress post in Grid, List & Isotope view ( filter by category, tag, author..) without a single line of coding.
7 * Author: RadiusTheme
8 * Version: 4.1.3
9 * Text Domain: the-post-grid
10 * Domain Path: /languages
11 * Author URI: https://radiustheme.com/
12 */
13
14 if ( ! defined( 'ABSPATH' ) ) {
15 exit;
16 }
17
18 define( 'RT_THE_POST_GRID_VERSION', '4.1.3' );
19 define( 'RT_THE_POST_GRID_AUTHOR', 'RadiusTheme' );
20 define( 'RT_THE_POST_GRID_NAME', 'The Post Grid' );
21 define( 'RT_THE_POST_GRID_PLUGIN_FILE', __FILE__ );
22 define( 'RT_THE_POST_GRID_PLUGIN_PATH', dirname( __FILE__ ) );
23 define( 'RT_THE_POST_GRID_PLUGIN_ACTIVE_FILE_NAME', plugin_basename( __FILE__ ) );
24 define( 'RT_THE_POST_GRID_PLUGIN_URL', plugins_url( '', __FILE__ ) );
25 define( 'RT_THE_POST_GRID_PLUGIN_SLUG', basename( dirname( __FILE__ ) ) );
26 define( 'RT_THE_POST_GRID_LANGUAGE_PATH', dirname( plugin_basename( __FILE__ ) ) . '/languages' );
27
28 if ( ! class_exists( 'rtTPG' ) ) {
29 require_once 'app/RtTpg.php';
30 }