mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
4 lines
190 B
Text
4 lines
190 B
Text
add_filter('smush_skip_image_from_lazy_load', function( $skip, $src, $image ){
|
|
//compare the $src here and return true to skip
|
|
return $skip || strpos( $src, '/preloader.png' );
|
|
}, 99, 3);
|