Skip to content

Instantly share code, notes, and snippets.

@marcmascort
Created November 19, 2014 10:52
Show Gist options
  • Save marcmascort/17d22644f50b0c05f620 to your computer and use it in GitHub Desktop.
Save marcmascort/17d22644f50b0c05f620 to your computer and use it in GitHub Desktop.
Force GD image editor for Wordpress (Solve HTML ERROR uploading images)
<?php
function change_graphic_lib($array) {
return array( 'WP_Image_Editor_GD', );
}
add_filter( 'wp_image_editors', 'change_graphic_lib' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment