| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/ict/wp-content/plugins/the-post-grid/ |
Upload File : |
<?php
/**
* Plugin Name: The Post Grid
* Plugin URI: https://www.radiustheme.com/downloads/the-post-grid-pro-for-wordpress/
* Description: Fast & Easy way to display WordPress post in Grid, List & Isotope view ( filter by category, tag, author..) without a single line of coding.
* Author: RadiusTheme
* Version: 7.4.3
* Text Domain: the-post-grid
* Domain Path: /languages
* Author URI: https://radiustheme.com/
*
* @package RT_TPG
*/
// Do not allow directly accessing this file.
if ( ! defined( 'ABSPATH' ) ) {
exit( 'This script cannot be accessed directly.' );
}
define( 'RT_THE_POST_GRID_VERSION', '7.4.3' );
define( 'RT_THE_POST_GRID_AUTHOR', 'RadiusTheme' );
define( 'RT_THE_POST_GRID_NAME', 'The Post Grid' );
define( 'RT_THE_POST_GRID_PLUGIN_FILE', __FILE__ );
define( 'RT_THE_POST_GRID_PLUGIN_PATH', dirname( __FILE__ ) );
define( 'RT_THE_POST_GRID_PLUGIN_ACTIVE_FILE_NAME', plugin_basename( __FILE__ ) );
define( 'RT_THE_POST_GRID_PLUGIN_URL', plugins_url( '', __FILE__ ) );
define( 'RT_THE_POST_GRID_PLUGIN_SLUG', basename( dirname( __FILE__ ) ) );
define( 'RT_THE_POST_GRID_LANGUAGE_PATH', dirname( plugin_basename( __FILE__ ) ) . '/languages' );
if ( ! class_exists( 'rtTPG' ) ) {
require_once 'app/RtTpg.php';
}