Created
March 5, 2021 13:34
-
-
Save lynt-smitka/252bbbd51006714ce0b3f4fe9892fd93 to your computer and use it in GitHub Desktop.
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
add_filter( 'wp_image_editors', 'lynt_wp_image_editors' ); | |
function lynt_wp_image_editors( $editors ) { | |
//return array( 'WP_Image_Editor_GD' ); //only GD | |
//return array( 'WP_Image_Editor_Imagick' ); //only Imagick | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Or:
return array( 'WP_Image_Editor_Imagick', 'WP_Image_Editor_GD' );
for priority.