wordpress版本5.0.3

找到wordpress目录下wp-includes文件夹,修改functions.php

添加以下代码

add_filter( 'wp_image_editors', 'change_graphic_lib' );
function change_graphic_lib($array) {
  return array( 'WP_Image_Editor_GD', 'WP_Image_Editor_Imagick' );
}

保存之后再上传就ok了。

评论