wordperss媒体库上传图片破掉,无法正常显示。

今天上午发现自己博客的媒体图不能上传图片了,上传后无法显示,老是破掉。请问是怎么回事?
已邀请:

daibu

赞同来自:

打开functions.php,找到以下代码,代码原文如下:

 

“What you need to do to fix this issue to open functions.php and find this line:

add_filter(‘ext2type’,’minimatica_mime_types’);

And replace it with this:

add_filter(‘ext2type’,’minimatica_file_types’);

That’s it; no other change is necessary.”

I tried it and So far it seems to work perfectly.

Cheers!

修改保存即可。

daibu

赞同来自:

你用的主题下的functions.php文件的的166行使用的变量先做个判断,如果有wp_error的话,先返回恰当的值,示例:

如果166行所在函数被挂载在filter hook,这样:

if(is_wp_error(第166行出错的变量)){
 
return 该函数的<a href="https://www.baidu.com/s%3Fwd%3 ... ot%3B target="_blank" class="baidu-highlight">形参</a>;
}

如果166行所在函数被挂载在action hook,这样:

if(is_wp_error(第166行出错的变量)){
 
return;
}

如果第166行所在函数既不是action hook,也不是filter hook:

if(is_wp_error(第166行出错的变量)){
 
return;
}

[已注销]

赞同来自:

asfsdnne

[已注销]

赞同来自:

啊深V说的那么

[已注销]

赞同来自:

按时发生的愤怒的父母

要回复问题请先登录注册