Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello,
    WordPress currently does not support avif image as not many browsers support it.
    However, I will make a filter available in our plugin in the next update so that you can add support for avif image. Please add below PHP snippet after the next version(1.0.11) released:

    add_filter( 'exmage_get_supported_mime_types', function ( $mime_types ) {
    	$mime_types[] = 'image/avif';
    
    	return $mime_types;
    } );

    Best regards

    Thread Starter yesyeahvh

    (@yesyeahvh)

    thank you sir

    Thread Starter yesyeahvh

    (@yesyeahvh)

    i added your code to theme function.php but get error: Invalid or not supported image URL

    You seemed to not read my reply carefully. The snippet will only work since version 1.0.11 which had not been released yet.
    Anyway, we’ve just released that version, please update the plugin on your site.

    Thread Starter yesyeahvh

    (@yesyeahvh)

    thank you

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘avif support’ is closed to new replies.