Skip to content

Instantly share code, notes, and snippets.

@lynt-smitka
Created March 24, 2022 14:36
Show Gist options
  • Save lynt-smitka/ea70bddb8dc94684655e45bccc13d558 to your computer and use it in GitHub Desktop.
Save lynt-smitka/ea70bddb8dc94684655e45bccc13d558 to your computer and use it in GitHub Desktop.
WordPress default image editor
add_action( 'wp_image_editors', function() {
return array( 'WP_Image_Editor_GD', 'WP_Image_Editor_Imagick' );
} );
add_action( 'wp_image_editors', function() {
return array( 'WP_Image_Editor_Imagick', 'WP_Image_Editor_GD' );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment