File "class-kadence-control-title.php"
Full Path: /home/romayxjt/public_html/wp-content/themes/kadence/inc/customizer/react/class-kadence-control-title.php
File size: 634 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* The Switch customize control extends the WP_Customize_Control class.
*
* @package customizer-controls
*/
if ( ! class_exists( 'WP_Customize_Control' ) ) {
return;
}
/**
* Class Kadence_Control_Switch
*
* @access public
*/
class Kadence_Control_Title extends WP_Customize_Control {
/**
* Control type
*
* @var string
*/
public $type = 'kadence_title_control';
/**
* Send to JS.
*/
public function to_json() {
parent::to_json();
}
/**
* Empty Render Function to prevent errors.
*/
public function render_content() {
}
}
$wp_customize->register_control_type( 'Kadence_Control_Title' );