File "form-label.php"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/flexible-shipping/vendor_prefixed/wpdesk/wp-forms/templates/form-label.php
File size: 440 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace FSVendor;
/**
* @var \WPDesk\Forms\Field $field
* @var string $name_prefix
* @var string $value
*/
?>
<th class="titledesc" scope="row">
<label for="<?php
echo \esc_attr($field->get_id());
?>"><?php
echo \esc_html($field->get_label());
?>
<?php
if ($field->has_description_tip()) {
?>
<?php
echo \wp_kses_post(\wc_help_tip($field->get_description_tip()));
?>
<?php
}
?>
</label>
</th>
<?php