mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
10 lines
286 B
Text
10 lines
286 B
Text
function no_auto_optimize_gif( $optimize, $attachment_id, $metadata ) {
|
|
if ( ! $optimize ) {
|
|
return false;
|
|
}
|
|
|
|
$mime_type = get_post_mime_type( $attachment_id );
|
|
|
|
return 'image/gif' !== $mime_type;
|
|
}
|
|
add_filter( 'imagify_auto_optimize_attachment', 'no_auto_optimize_gif', 10, 3 );
|