$settings Field configuration. * @var mixed $value Current saved value. * @var string $module_id Module ID. * * @package Merchant * @since 2.2.5 */ if ( ! defined( 'ABSPATH' ) ) { exit; } $settings = wp_parse_args( $settings, array( 'label' => esc_html__( 'Select Image', 'merchant' ), ) ); $drag_drop = $settings['drag_drop'] ?? false; echo '
'; if ( ! empty( $value ) ) : $image = wp_get_attachment_image_src( $value, 'thumbnail' ); if ( ! empty( $image ) && ! empty( $image[0] ) ) : echo '
'; echo ''; printf( '', esc_url( $image[0] ) ); echo '
'; endif; endif; echo '
'; ?>
<?php echo esc_attr__( 'Upload image', 'merchant' ); ?>