Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Created April 8, 2020 14:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mgibbs189/30d6435f63bd9b0247306abbfa602b91 to your computer and use it in GitHub Desktop.
Save mgibbs189/30d6435f63bd9b0247306abbfa602b91 to your computer and use it in GitHub Desktop.
FacetWP - Imagify WebP support
<?php
// Add to your (child) theme's functions.php
add_filter( 'facetwp_template_html', function( $output, $class ) {
$output = \Imagify\Webp\Picture\Display::get_instance()->process_content( $output );
return $output;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment