Created
June 25, 2022 07:42
-
-
Save vietrick/80c47b38d22735b05de249e078546ff9 to your computer and use it in GitHub Desktop.
Switch to WP_Image_Editor_GD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
@@ Sửa lỗi Post-Processing of Image Failed WordPress | |
@@ Sử dụng module GD Library để xử lý hình ảnh Wordpress | |
**/ | |
function wpb_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', 'wpb_image_editor_default_to_gd' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment