at path:
ROOT
/
wp-content
/
plugins
/
gs-logo-slider
/
gs-logo.php
run:
R
W
Run
assets
DIR
2026-07-10 16:51:49
R
W
Run
includes
DIR
2026-07-10 16:51:49
R
W
Run
languages
DIR
2026-07-10 16:51:49
R
W
Run
templates
DIR
2026-07-10 16:51:49
R
W
Run
gs-logo.php
1.82 KB
2026-06-15 12:20:06
R
W
Run
Delete
Rename
readme.txt
46.15 KB
2026-06-15 12:20:06
R
W
Run
Delete
Rename
error_log
up
📄
gs-logo.php
Save
<?php /** * * @package GS_Logo_Slider * @author GS Plugins <hello@gsplugins.com> * @license GPL-2.0+ * @link https://www.gsplugins.com/ * @copyright 2015 GS Plugins * * @wordpress-plugin * Plugin Name: GS Logo Slider Lite * Plugin URI: https://www.gsplugins.com/product/gs-logo-slider/ * Description: Best Responsive Logo slider to display partners, clients or sponsors Logo on WordPress site. Display anywhere at your site using shortcode like [gslogo id=1] & Widget. Check <a href="https://logo.gsplugins.com/">GS Logo Slider Demo</a> & <a href="https://docs.gsplugins.com/gs-logo-slider/">Documention</a>. * Version: 3.8.4 * Author: GS Plugins * Author URI: https://www.gsplugins.com/ * Text Domain: gslogo * License: GPL-2.0+ * License URI: http://www.gnu.org/licenses/gpl-2.0.txt */ /** * Protect direct access */ if ( ! defined( 'ABSPATH' ) ) exit; /** * Defining constants */ if ( ! defined( 'GSL_VERSION' ) ) define( 'GSL_VERSION', '3.8.4' ); if ( ! defined( 'GSL_MIN_PRO_VERSION' ) ) define( 'GSL_MIN_PRO_VERSION', '3.5.3' ); if ( ! defined( 'GSL_MENU_POSITION' ) ) define( 'GSL_MENU_POSITION', 33 ); if ( ! defined( 'GSL_PLUGIN_FILE' ) ) define( 'GSL_PLUGIN_FILE', __FILE__ ); if ( ! defined( 'GSL_PLUGIN_DIR' ) ) define( 'GSL_PLUGIN_DIR', trailingslashit( plugin_dir_path( GSL_PLUGIN_FILE ) ) ); if ( ! defined( 'GSL_PLUGIN_URI' ) ) define( 'GSL_PLUGIN_URI', trailingslashit( plugins_url( '', GSL_PLUGIN_FILE ) ) ); if ( ! defined( 'GSL_PRO_PLUGIN' ) ) define( 'GSL_PRO_PLUGIN', 'gs-logo-slider-pro/gs-logo-slider-pro.php' ); /** * Load essential files */ require_once GSL_PLUGIN_DIR . 'includes/autoloader.php'; require_once GSL_PLUGIN_DIR . 'includes/functions.php'; require_once GSL_PLUGIN_DIR . 'includes/init.php';