| Server IP : 178.212.43.201 / Your IP : 10.100.0.33 Web Server : Apache/2.4.37 (Oracle Linux Server) OpenSSL/1.1.1k System : Linux spa0007.srv.paxillus.pl 5.4.17-2136.355.3.1.el8uek.x86_64 #3 SMP Sat May 9 17:11:55 PDT 2026 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/paxillus/wp-content/plugins/wp-optimize-premium/templates/images/ |
Upload File : |
<?php if (!defined('WPO_VERSION')) die('No direct access allowed'); ?>
<?php
$default_options = array(
'images' => false,
'backgrounds' => false,
'iframes' => false,
'youtube_preview' => false,
'skip_classes' => '',
);
$lazyload_options = wp_parse_args($options->get_option('lazyload'), $default_options);
$read_more_link = 'https://developers.google.com/web/fundamentals/performance/lazy-loading-guidance/images-and-video/';
?>
<div id="wpo_lazy_load_settings">
<h3 class="wpo-first-child"><?php esc_html_e('Lazy-load images', 'wp-optimize'); ?></h3>
<div class="wpo-fieldgroup">
<p>
<?php
esc_html_e('Lazy-loading is technique that defers loading of non-critical resources (images, video) at page load time.', 'wp-optimize');
echo " ";
esc_html_e('Instead, these non-critical resources are loaded at the point they are needed (e.g. the user scrolls down to them).', 'wp-optimize');
?>
<br>
<?php $wp_optimize->wp_optimize_url($read_more_link, __('Follow this link to read more about lazy-loading images and video', 'wp-optimize')); ?>
</p>
<?php if ($lazyload_already_provided_by) { ?>
<div class="notice notice-warning below-h2">
<p>
<?php
// translators: %s is the name of the plugin
printf(esc_html__('We have detected an already-active component that provides lazy-loading (%s). Having several lazy-loading plugins is likely to cause conflicts.', 'wp-optimize'), esc_html($lazyload_already_provided_by));
?>
</p>
</div>
<?php } ?>
<ul>
<li><label><input type="checkbox" name="lazyload[images]" <?php checked($lazyload_options['images']); ?> /><?php esc_html_e('Images', 'wp-optimize'); ?></label></li>
<li><label><input type="checkbox" name="lazyload[backgrounds]" <?php checked($lazyload_options['backgrounds']); ?> /><?php esc_html_e('Background images', 'wp-optimize'); ?></label></li>
<li><label><input type="checkbox" name="lazyload[iframes]" <?php checked($lazyload_options['iframes']); ?> /><?php esc_html_e('Iframes and Videos', 'wp-optimize'); ?></label></li>
<li>
<label> <input type="checkbox" name="lazyload[youtube_preview]" <?php checked($lazyload_options['youtube_preview']); ?> /><?php esc_html_e('Replace YouTube iframe with thumbnail image', 'wp-optimize'); ?>
</label>
<span tabindex="0" data-tooltip="<?php esc_attr_e('Improves page loading time when YouTube videos are present on the page.', 'wp-optimize');?>"><span class="dashicons dashicons-editor-help"></span> </span>
</li>
</ul>
<p>
<?php esc_html_e('Skip image classes', 'wp-optimize');?><br>
<input type="text" name="lazyload[skip_classes]" id="wpo_lazyload_skip_classes" value="<?php echo esc_attr($lazyload_options['skip_classes']); ?>" /><br>
<small>
<?php
esc_html_e('Enter the image class or classes comma-separated.', 'wp-optimize');
echo " ";
esc_html_e('Supports wildcards.', 'wp-optimize');
echo " ";
esc_html_e('Example: image-class1, image-class2, thumbnail*, ...', 'wp-optimize');
?>
</small>
</p>
<input type="button" class="button-primary wp-optimize-settings-save" value="<?php esc_attr_e('Save settings', 'wp-optimize'); ?>" />
<img class="wpo_spinner display-none" src="<?php echo esc_url(admin_url('images/spinner-2x.gif')); // phpcs:ignore PluginCheck.CodeAnalysis.ImageFunctions.NonEnqueuedImage -- N/A ?>" alt="...">
<span class="dashicons dashicons-yes display-none save-done"></span>
</div>
</div>