diff --git a/templates/input-text-multiple.php b/templates/input-text-multiple.php index 05e7d29abd4d8744cdffef854dd7ecff536825f1..4f87610518bc9db812d0f18afbc4c3a184a00c19 100644 --- a/templates/input-text-multiple.php +++ b/templates/input-text-multiple.php @@ -57,7 +57,7 @@ if ( empty( $value ) || is_string( $value ) ) { </div> <?php if ( $field->get_type() === 'checkbox' && $field->has_sublabel() ) : ?> - <?php echo \esc_html( $field->get_sublabel() ); ?></label> + <?php echo $field->get_sublabel(); ?></label> <?php endif; ?> <?php endforeach; ?> </div> diff --git a/templates/input.php b/templates/input.php index 4b8eb6a5bc3c3e485e51a07ed8e1107a8d053ac2..e5e950a81ec1b39e927372d82c11bfea299922d4 100644 --- a/templates/input.php +++ b/templates/input.php @@ -39,5 +39,5 @@ if ( $field->get_type() === 'checkbox' && $field->has_sublabel() ) : /> <?php if ( $field->get_type() === 'checkbox' && $field->has_sublabel() ) : ?> - <?php echo \esc_html( $field->get_sublabel() ); ?></label> + <?php echo $field->get_sublabel(); ?></label> <?php endif; ?>