| 1 |
<?php |
| 2 |
// If this file is called directly, abort. |
| 3 |
if ( ! defined( 'WPINC' ) ) { |
| 4 |
die; |
| 5 |
} |
| 6 |
?> |
| 7 |
|
| 8 |
<label> |
| 9 |
<h4 class="betterdocs-customize-control-separator"><?php echo esc_html( $control->label ); ?></h4> |
| 10 |
<?php if ( ! empty( $control->description ) ) : ?> |
| 11 |
<span class="description customize-control-description"> |
| 12 |
<?php echo esc_html( $control->description ); ?> |
| 13 |
</span> |
| 14 |
<?php endif; ?> |
| 15 |
</label> |
| 16 |
|