# wpdirectorykit/1.3.3/elementor-elements/views/wdk-field-label.php

WP Directory Kit, version 1.3.3. 19 lines.

- Page: https://pluginprobe.com/plugins/wpdirectorykit/1.3.3/code/elementor-elements/views/wdk-field-label.php
- Raw: https://pluginprobe.com/plugins/wpdirectorykit/1.3.3/raw/elementor-elements/views/wdk-field-label.php
- Modified: 2024-06-18T13:32:34+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wpdirectorykit/1.3.3/code/elementor-elements/views/wdk-field-label.php#L10-L20`.

```php
<?php
/**
 * The template for Element Listing Field Label.
 * This is the template that elementor element
 *
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

?>
<div class="wdk-element" id="wdk_el_<?php echo esc_html($id_element);?>">
    <div class="wdk-field-label">
        <?php echo esc_html($field_prefix).wp_kses_post($field_label).esc_html($field_suffix); ?>
    </div>
</div>


```
