📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 13:25:18
📂
/ (Root)
/
home
/
orkouolp
/
web
/
orkofarms.com
/
wp-content
/
plugins
/
kirki
/
customizer
/
packages
/
controls
/
responsive
📍 /home/orkouolp/web/orkofarms.com/wp-content/plugins/kirki/customizer/packages/controls/responsive
🔄 Refresh
✏️
Editing: responsive.php
Writable
<?php /** * Plugin Name: Kirki Responsive * Plugin URI: https://www.themeum.com * Description: Responsive control for Kirki Customizer Framework. * Version: 1.1 * Author: Themeum * Author URI: https://www.themeum.com * License: GPL-3.0 * License URI: https://oss.ninja/gpl-3.0?organization=Kirki%20Framework&project=control%20input%20slider * Text Domain: kirki-responsive * Domain Path: /languages * * @package kirki-responsive */ defined( 'ABSPATH' ) || exit; if ( ! function_exists( 'kirki_load_responsive_control' ) ) { /** * Load responsive control. */ function kirki_load_responsive_control() { // Stop, if Kirki is not installed. if ( ! defined( 'KIRKI_VERSION' ) ) { return; } // Stop, if Kirki controls are already loaded. if ( defined( 'KIRKI_CONTROLS_VERSION' ) ) { return; } // Stop, if Kirki Responsive is already installed. if ( class_exists( '\Kirki\Responsive\Init' ) ) { return; } if ( ! function_exists( 'get_plugin_data' ) ) { require_once ABSPATH . 'wp-admin/includes/plugin.php'; } $plugin_data = get_plugin_data( __FILE__ ); define( 'KIRKI_RESPONSIVE_VERSION', $plugin_data['Version'] ); define( 'KIRKI_RESPONSIVE_PLUGIN_FILE', __FILE__ ); new \Kirki\Responsive\Init(); } add_action( 'plugins_loaded', 'kirki_load_responsive_control' ); }
💾 Save Changes
❌ Cancel