mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-28 11:22:21 +08:00
https://shortpixel.helpscoutdocs.com/article/260-exclude-an-image-from-being-optimized-when-using-autoptimize
4 lines
136 B
Text
4 lines
136 B
Text
add_filter('autoptimize_filter_imgopt_noptimize','imgopt_excl');
|
|
function imgopt_excl() {
|
|
return 'some-image.png, another-image.jpg';
|
|
}
|