wp admin - Why is unfiltered_upload not working despite being enabled?

According to the Codex, all that's needed to enable the unfiltered_ upload capability - i.e. the ability to upload

According to the Codex, all that's needed to enable the unfiltered_ upload capability - i.e. the ability to upload any filetypes to the Media Library rather than just the default whitelisted ones - is to set:

define( 'ALLOW_UNFILTERED_UPLOADS', true );

...in wp-config, which I have done and placed above the line where it says to stop editing.

Most online articles about enabling the capability suggest it's sufficient to stop here, including an answer on this very site, but the Codex itself suggests that it's necessary to actively assign the capability to users, which I've also done, in my theme's functions.php file:

$edit_admin = get_role('administrator');
$edit_admin->add_cap('unfiltered_upload');  

However, despite this, whenever going to my Media Library to upload a non-supported file (so far tested with an .AI file and .SVG file), I still get the standard error:

Sorry, this file type is not permitted for security reasons.

Why is this?

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745230578a4617658.html

相关推荐

  • wp admin - Why is unfiltered_upload not working despite being enabled?

    According to the Codex, all that's needed to enable the unfiltered_ upload capability - i.e. the ability to upload

    3小时前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信