24 lines
659 B
PHP
24 lines
659 B
PHP
<?php
|
|
|
|
if( class_exists( 'WP_Customize_control' ) ){
|
|
|
|
class Daisy_Blog_Custom_Text extends WP_Customize_Control
|
|
{
|
|
/**
|
|
* Render the content on the theme customizer page
|
|
*/
|
|
public function render_content()
|
|
{
|
|
?>
|
|
<label>
|
|
<strong class="customize-text_editor"><?php echo wp_kses_post( $this->label ); ?></strong>
|
|
<br />
|
|
<span class="customize-text_editor_desc">
|
|
<?php echo wp_kses_post( $this->description ); ?>
|
|
</span>
|
|
</label>
|
|
<?php
|
|
}
|
|
}//editor close
|
|
|
|
}//class close
|