📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 15:17:33
📂
/ (Root)
/
home
/
orkouolp
/
web
/
orkofarms.com
/
wp-content
/
plugins
/
wcboost-variation-swatches
/
includes
/
customizer
📍 /home/orkouolp/web/orkofarms.com/wp-content/plugins/wcboost-variation-swatches/includes/customizer
🔄 Refresh
✏️
Editing: size-control.php
Writable
<?php /** * Size Control for the Customizer. * * @package WCBoost\VariationSwatches */ namespace WCBoost\VariationSwatches\Customize; defined( 'ABSPATH' ) || exit; /** * Customizer control for setting swatch width and height. */ class Size_Control extends \WP_Customize_Control { /** * Declare the control type. * * @var string */ public $type = 'wcboost-variation-swatches-size'; /** * Render control. */ public function render_content() { $size = $this->value(); $size = wp_parse_args( $size, $this->setting->default ); ?> <?php if ( ! empty( $this->label ) ) : ?> <span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span> <?php endif; ?> <?php if ( ! empty( $this->description ) ) : ?> <span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span> <?php endif; ?> <span class="customize-control-inside"> <input type="text" size="3" pattern="\d*" value="<?php echo esc_attr( $size['width'] ); ?>" data-name="width"/> × <input type="text" size="3" pattern="\d*" value="<?php echo esc_attr( $size['height'] ); ?>" data-name="height"/> </span> <?php } }
💾 Save Changes
❌ Cancel