Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
yith-woocommerce-wishlist
/
plugin-fw
/
templates
/
fields
:
preview.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Template for displaying the preview field * * @var array $field The field. * @package YITH\PluginFramework\Templates\Fields */ defined( 'ABSPATH' ) || exit; // Exit if accessed directly. list ( $field_id, $class, $value, $custom_attributes, $data ) = yith_plugin_fw_extract( $field, 'id', 'class', 'value', 'custom_attributes', 'data' ); $class = ! empty( $class ) ? $class : 'yith-plugin-fw-preview-field'; ?> <img id="<?php echo esc_attr( $field_id ); ?>" class="<?php echo esc_attr( $class ); ?>" src="<?php echo esc_url( $value ); ?>" <?php yith_plugin_fw_html_attributes_to_string( $custom_attributes, true ); ?> <?php yith_plugin_fw_html_data_to_string( $data, true ); ?> >