| 1 |
<?php |
| 2 |
/** |
| 3 |
* Render setting to enable Image source overlay |
| 4 |
* |
| 5 |
* @var array $options ISC options. |
| 6 |
*/ |
| 7 |
?> |
| 8 |
<div class="isc-settings-highlighted"> |
| 9 |
<label> |
| 10 |
<input type="checkbox" name="isc_options[display_type][]" id="isc-settings-overlay-enable" value="overlay" <?php checked( in_array( 'overlay', $options['display_type'], true ), true ); ?> /> |
| 11 |
<?php |
| 12 |
esc_html_e( 'Display the image source as an overlay.', 'image-source-control-isc' ); |
| 13 |
?> |
| 14 |
</label> |
| 15 |
</div> |
| 16 |
<?php |
| 17 |
|