| 1 |
<?php |
| 2 |
/** |
| 3 |
* The template for Element Listing Field Icon. |
| 4 |
* This is the template that elementor element icon, img |
| 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-icon"> |
| 15 |
<img src="<?php echo esc_url(wdk_image_src(array('icon_id' => $field_icon), 'full', NULL, 'icon_id'));?>" alt="<?php echo wdk_image_alt($field_icon);?>"> |
| 16 |
</div> |
| 17 |
</div> |
| 18 |
|
| 19 |
|