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

WP Directory Kit, version 1.2.7. 19 lines.

- Page: https://pluginprobe.com/plugins/wpdirectorykit/1.2.7/code/elementor-elements/views/wdk-field-label.php
- Raw: https://pluginprobe.com/plugins/wpdirectorykit/1.2.7/raw/elementor-elements/views/wdk-field-label.php
- Modified: 2023-10-17T19:27:58+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.2.7/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>


```
