class-vamtam-customize-heading-control.php 529 B

1234567891011121314151617
  1. <?php
  2. class Vamtam_Customize_Heading_Control extends Vamtam_Customize_Control {
  3. public $type = 'vamtam-heading';
  4. /**
  5. * Render the control's content.
  6. */
  7. protected function render_content() {
  8. if ( ! empty( $this->label ) ) : ?>
  9. <span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
  10. <?php endif; ?>
  11. <?php if ( ! empty( $this->description ) ) : ?>
  12. <span class="description customize-control-description"><?php echo wp_kses_post( $this->description ); ?></span>
  13. <?php endif;
  14. }
  15. }