Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
/
site
/
wp-content
/
themes
/
fairy
/
candidthemes
/
customizer-pro
:
customize-controls.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * A class to create a option separator in customizer section * *@since 1.0.0 */ class Fairy_Customize_Section_Separator extends WP_Customize_Control { /** * The type of customize control being rendered. * * @since 1.0.0 * @access public * @var string */ public $type = 'fairy_separator'; /** * Displays the control content. * * @since 1.0.0 * @access public * @return void */ public function render_content() { ?> <div class="fairy-customize-section-wrap"> <label> <span class="fairy-customize-control-title"><h4><?php echo esc_html( $this->label ); ?></h4></span> </label> </div> <?php } }