| 1 |
<?php |
| 2 |
|
| 3 |
if ( ! defined('WPINC') ) { |
| 4 |
wp_die(); |
| 5 |
} |
| 6 |
|
| 7 |
?><td class="wpc-filter-label-td"><?php |
| 8 |
$label = esc_html( $attributes['label'] ); |
| 9 |
if( $label ) : |
| 10 |
?><label for="<?php if( isset( $attributes['id'] ) ){ echo esc_attr( $attributes['id'] ); } ?>" class="wpc-filter-label"><?php |
| 11 |
echo $label; |
| 12 |
if( isset( $attributes['required'] ) && $attributes['required'] ){ |
| 13 |
echo '<span class="wpc-field-required">*</span>'."\n"; |
| 14 |
} |
| 15 |
?></label> |
| 16 |
<?php echo flrt_field_instructions($attributes); // Already escaped in function ?> |
| 17 |
<?php echo flrt_tooltip($attributes); ?> |
| 18 |
<?php endif; ?> |
| 19 |
</td> |