Skip to content

Instantly share code, notes, and snippets.

@mbrughi
Created January 7, 2021 10:18
Show Gist options
  • Select an option

  • Save mbrughi/55622fc651f4433b84eb1a3bb9702f48 to your computer and use it in GitHub Desktop.

Select an option

Save mbrughi/55622fc651f4433b84eb1a3bb9702f48 to your computer and use it in GitHub Desktop.
Wordpress: enable preview of .webp image files
// Enable preview / thumbnail for webp image files.
function display_webp($result, $path) {
if ($result === false) {
$webp_image_types = array( IMAGETYPE_WEBP );
$info = @getimagesize( $path );
if (empty($info)) {
$result = false;
} elseif (!in_array($info[2], $webp_image_types)) {
$result = false;
} else {
$result = true;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment