plugin-icon

Images to AVIF

제작자: kubiq·
Convert PNG, JPG, GIF and WEBP images to AVIF and speed up your web loading
버전
1.1
활성화된 설치 항목
40
최근 업데이트일
Jan 14, 2026
Images to AVIF

Statistics say that AVIF format can save more than a half of the page weight without losing images quality. Convert PNG, JPG, GIF and WEBP images to AVIF and speed up your web, save visitors download data, make your Google ranking better. Install also Images to WebP plugin if you want to have fallback to WebP and then to the original file.

  • automated test after plugin activation to make sure it will work on your server
  • works with all types of WordPress installations: domain, subdomain, subdirectory, multisite/network
  • works on Apache and NGiNX
  • image URL will be not changed so it works everywhere, in <img> src, srcset, <picture>, even in CSS backgrounds and there is no problem with cache
  • original files will be not touched
  • set quality of converted images
  • auto convert on upload
  • only convert image if AVIF filesize is lower than original image filesize
  • bulk convert existing images to AVIF ( you can choose folders )
  • bulk convert only missing images

Hooks for developers

images_to_avif_sizes

Maybe you want to disable AVIF for thumbnails

add_filter( 'images_to_avif_sizes', 'disable_images_to_avif_sizes', 10, 2 ); function disable_images_to_avif_sizes( $sizes, $attachmentId ){ unset( $sizes['thumbnail'] ); return $sizes; }

images_to_avif_htaccess

Maybe you want to modify htaccess rules somehow

add_filter( 'images_to_avif_htaccess', 'modify_images_to_avif_htaccess', 10, 2 ); function modify_images_to_avif_htaccess( $rewrite_rules ){ // do some magic here return $rewrite_rules; }

images_to_avif_abspath

Maybe you use roots.io/bedrock or other custom folder structure

add_filter( 'images_to_avif_abspath', 'modify_images_to_avif_abspath', 10, 2 ); function modify_images_to_avif_abspath( $abspath ){ return trailingslashit( WP_CONTENT_DIR ); }

$images_to_avif->convert_image()

Maybe you want to automatically generate AVIF for other plugins

add_action( 'XXPLUGIN_image_created', 'XX_images_to_avif', 10, 2 ); function XX_images_to_avif( $image_path ){ global $images_to_avif; $images_to_avif->convert_image( $image_path ); }
무료Business 요금제에서
설치하면 WordPress.com 서비스 약관서드파티 플러그인 약관에 동의하게 됩니다.
테스트된 버전
WordPress 6.9.1
이 플러그인은 다운로드할 수 있으며 에서 사용할 수 있습니다.