PLEASE NOTE: I have not tested this, but I found this for the 3.9 media library not working and apparently it involves the WP_Image_Editor default to GD. Add this snippet of code your functions php file:
function ms_image_editor_default_to_gd( $editors ) {
$gd_editor = ‘WP_Image_Editor_GD’;
$editors = array_diff( $editors, array( $gd_editor ) );
array_unshift( $editors, $gd_editor );
return $editors;
}
add_filter( ‘wp_image_editors’, ‘ms_image_editor_default_to_gd’ );
-
This reply was modified 7 years, 7 months ago by asfakmd.