Server IP : 192.64.118.117 / Your IP : 18.190.156.78 Web Server : LiteSpeed System : Linux premium56.web-hosting.com 4.18.0-513.24.1.lve.1.el8.x86_64 #1 SMP Thu May 9 15:10:09 UTC 2024 x86_64 User : thecgapy ( 1160) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/thecgapy/mobilecreationz.com/wp-content/plugins/simple-custom-css/ |
Upload File : |
<?php /** * Plugin Name: Simple Custom CSS * Plugin URI: http://johnregan3.github.io/simple-custom-css * Description: The simple, solid way to add custom CSS to your WordPress website. Simple Custom CSS allows you to add your own styles or override the default CSS of a plugin or theme. * Author: John Regan, Danny Van Kooten * Author URI: http://johnregan3.me * Version: 3.3 * Text Domain: simple-custom-css * * Copyright 2014 John Regan (email : john@johnregan3.com) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License, version 2, as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * * @package SCCSS * @author John Regan * @version 3.2 */ // Prevent direct file access if( ! defined( 'ABSPATH' ) ) { die(); } define( 'SCCSS_FILE', __FILE__ ); if( ! is_admin() ) { require_once dirname( SCCSS_FILE ) . '/includes/public.php'; } elseif( ! defined( 'DOING_AJAX' ) ) { require_once dirname( SCCSS_FILE ) . '/includes/admin.php'; }