📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 21:24:05
📂
/ (Root)
/
home
/
apkbfjox
/
rs786.org
/
wp-content
/
themes
/
kadence
/
inc
/
customizer
/
custom-controls
📍 /home/apkbfjox/rs786.org/wp-content/themes/kadence/inc/customizer/custom-controls
🔄 Refresh
✏️
Editing: class-kadence-control-blank.php
Writable
<?php /** * The blank customize control extends the WP_Customize_Control class. * * @package customizer-controls */ if ( ! class_exists( 'WP_Customize_Control' ) ) { return; } /** * Class Kadence_Control_Blank * * @access public */ class Kadence_Control_Blank extends WP_Customize_Control { /** * Control type * * @var string */ public $type = 'kadence_blank_control'; /** * Render the control in the customizer */ public function render_content() { if ( ! empty( $this->label ) ) : ?> <span class="customize-control-title"><?php echo $this->label; // phpcs:ignore ?></span> <?php endif; if ( ! empty( $this->description ) ) : ?> <span class="customize-control-description"><?php echo $this->description; // phpcs:ignore ?></span> <?php endif; ?> <?php } }
💾 Save Changes
❌ Cancel