WordPress支持webp格式图片的代码

相信很多站长都发现了,有时候WordPress并不支持webp格式图片的上传,这就比较尴尬了,毕竟webp格式还是使用广泛的,那么有解决方法吗?其实是有的,只要代码就能实现。

将如下代码加入主题的functions.php:

//让WORDPRESS支持WEBP格式图片
function webp_images_mime_types( $result ) {
    $result['webp'] = 'image/webp';
    return $result;
}

function webp_images_displayable($result, $path) {
    $info = @getimagesize( $path );
    if($info['mime'] == 'image/webp') {
        $result = true;
    }
    return $result;
}

add_filter( 'mime_types', 'webp_images_mime_types', 10, 1 );
add_filter( 'file_is_displayable_image', 'webp_images_displayable', 10, 2 );

👋 感谢您的观看!

© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享