File "customize-controls.php"

Full Path: /websites/hqoliveoil/site/wp-content/themes/fairy/candidthemes/customizer-pro/customize-controls.php
File size: 879 bytes
MIME-type: text/x-php
Charset: utf-8

<?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
        }
    }