You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.2 KiB
PHP

<?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.2.6
* 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.2.6' );
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';
}