| Server IP : 121.121.20.254 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/INVOICE/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
* Author URI: http://regan.dev
* Version: 4.0.7
* Text Domain: simple-custom-css
*
* Copyright 2014-2025 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 4.0.7
*/
global $wp_version;
// Prevent direct file access.
if ( ! defined( 'ABSPATH' ) ) {
die();
}
define( 'SCCSS_FILE', __FILE__ );
define( 'SCCSS_OPTION', 'sccss_settings' );
if ( ! is_admin() ) {
include_once dirname( SCCSS_FILE ) . '/includes/public.php';
} elseif ( ! defined( 'DOING_AJAX' ) ) {
include_once dirname( SCCSS_FILE ) . '/includes/admin.php';
}
// Load the customizer control on later versions of WP.
if ( function_exists( 'wp_is_block_theme' ) && ! wp_is_block_theme() ) {
include_once dirname( SCCSS_FILE ) . '/includes/customizer.php';
}