Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #53941, comment 1


Ignore:
Timestamp:
08/18/2021 04:22:38 AM (3 years ago)
Author:
costdev
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #53941, comment 1

    initial v1  
    22
    33Can you also add how you're setting the image conversion, for example GIF to JPEG?
     4
     5I assume that you're using something akin to this?
     6
     7{{{#!php
     8<?php
     9
     10add_filter(
     11        'image_editor_output_format',
     12        function( $formats ) {
     13                $formats['image/gif'] = 'image/jpeg';
     14
     15                return $formats;
     16        }
     17);
     18}}}