mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
7 lines
176 B
Text
7 lines
176 B
Text
add_filter( 'imagify_nextgen_images_formats', function( $formats ) {
|
|
if ( isset( $formats['webp'] ) ) {
|
|
unset( $formats['webp'] );
|
|
}
|
|
|
|
return $formats;
|
|
} );
|