| 1 |
<?php |
| 2 |
/** |
| 3 |
* The template for Element Listing Field Label. |
| 4 |
* This is the template that elementor element |
| 5 |
* |
| 6 |
*/ |
| 7 |
|
| 8 |
if ( ! defined( 'ABSPATH' ) ) { |
| 9 |
exit; // Exit if accessed directly. |
| 10 |
} |
| 11 |
|
| 12 |
?> |
| 13 |
<div class="wdk-element" id="wdk_el_<?php echo esc_html($id_element);?>"> |
| 14 |
<div class="wdk-field-label"> |
| 15 |
<?php echo esc_html($field_prefix).wp_kses_post($field_label).esc_html($field_suffix); ?> |
| 16 |
</div> |
| 17 |
</div> |
| 18 |
|
| 19 |
|