| 1234567891011121314151617 |
- <?php
- class Vamtam_Customize_Info_Control extends Vamtam_Customize_Control {
- public $type = 'vamtam-info';
- /**
- * Render the control's content.
- */
- protected function render_content() {
- if ( ! empty( $this->label ) ) : ?>
- <span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
- <?php endif; ?>
- <?php if ( ! empty( $this->description ) ) : ?>
- <span class="description customize-control-description"><?php echo wp_kses_post( $this->description ); ?></span>
- <?php endif;
- }
- }
|