Last active
August 5, 2021 14:34
-
-
Save ChrisHPZ/f1c2c3a20f7df0f9a1c8879b8dca6e38 to your computer and use it in GitHub Desktop.
Media: Introduce image_editor_output_format filter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function my_theme_setup() { | |
add_image_size( 'image-size-class', 1280, 720, true ); | |
} | |
add_action( 'after_setup_theme', 'my_theme_setup' ); | |
function my_theme_wp_image_editor_output_format( $formats ) { | |
$formats['image/jpg'] = 'image/webp'; | |
return $formats; | |
} | |
add_filter( 'image_editor_output_format', 'my_theme_wp_image_editor_output_format' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment