php 将默认WordPress图像编辑器设置为GD库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 将默认WordPress图像编辑器设置为GD库相关的知识,希望对你有一定的参考价值。

<?php

function xxx_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', 'xxx_image_editor_default_to_gd' );

// from https://www.wpbeginner.com/wp-tutorials/how-to-fix-the-http-image-upload-error-in-wordpress/

?>

以上是关于php 将默认WordPress图像编辑器设置为GD库的主要内容,如果未能解决你的问题,请参考以下文章

php [将图像上传到媒体库]将图像上传到媒体库并将其设置为$ post_id(如果已指定)的特色图像。 #wordpress

设置默认编辑器| Wordpress

我可以使用 Javascript 更新 Wordpress 编辑器中的默认类吗?

php 更改WordPress图像编辑器

php 在编辑器中使所有Wordpress图像路径相对

php 编辑Wordpress图像压缩级别