mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
https://shortpixel.com/knowledge-base/article/actions-and-filters-of-shortpixel-image-optimizer/
8 lines
263 B
Text
8 lines
263 B
Text
function sp_filter_thumbnails($result, $fullPath, $isMainFile ) {
|
|
$result = true;
|
|
if ($isMainFile) {
|
|
$result = false;
|
|
}
|
|
return $result;
|
|
}
|
|
add_filter( 'shortpixel/image/skip_backup', 'sp_filter_thumbnails', 10, 3 );
|