Skip to content

Instantly share code, notes, and snippets.

@chrdesigner
Created November 17, 2022 14:21
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 chrdesigner/90d317783011c8efc55c1090402ebe2d to your computer and use it in GitHub Desktop.
Save chrdesigner/90d317783011c8efc55c1090402ebe2d to your computer and use it in GitHub Desktop.
Use GD instead of Imagick.
<?php
/** * Use GD instead of Imagick.
*/
function chr_use_gd_editor($array) {
return array( 'WP_Image_Editor_GD' );
}
add_filter( 'wp_image_editors', 'chr_use_gd_editor' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment