| Current Path : /home/sunflowe/www2/disneyexplorer/wp-content/themes/wide/inc/customize/classes/ |
| Current File : /home/sunflowe/www2/disneyexplorer/wp-content/themes/wide/inc/customize/classes/customize-info.php |
<?php
/**
* @package wide
* @version 2.0
* @author NanoAgency
* @link http://nanoagency.co
* @copyright Copyright (c) 2015 NanoAgency
* @license GPL v2
*/
class WP_Customize_Info_Control extends WP_Customize_Control
{
/**
* The type of customize control being rendered.
*/
public $type = 'info';
/**
* Displays the multiple select on the customize screen.
*/
public function render_content()
{
?>
<div class="wide-info-custom">
<p><span><?php echo esc_html( $this->label ); ?></span><?php echo esc_html( $this->description ); ?></p>
</div>
<?php
}
}