You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
417 B
20 lines
417 B
<?php
|
|
|
|
if ( ! defined( 'IMAGIFY_VERSION' ) ) {
|
|
return;
|
|
}
|
|
|
|
if ( ! function_exists( 'woodmart_single_product_gallery_images_webp' ) ) {
|
|
/**
|
|
* @param $class
|
|
*
|
|
* @return string
|
|
*/
|
|
function woodmart_single_product_gallery_images_webp( $class ) {
|
|
$class .= ' imagify-no-webp';
|
|
|
|
return $class;
|
|
}
|
|
|
|
add_filter( 'woodmart_single_product_gallery_image_class', 'woodmart_single_product_gallery_images_webp' );
|
|
}
|
|
|