Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lynt-smitka/252bbbd51006714ce0b3f4fe9892fd93 to your computer and use it in GitHub Desktop.
Save lynt-smitka/252bbbd51006714ce0b3f4fe9892fd93 to your computer and use it in GitHub Desktop.
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
}
@adam-laita
Copy link

Or:
return array( 'WP_Image_Editor_Imagick', 'WP_Image_Editor_GD' );
for priority.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment