php – wordpress中的表单提交无效

前端之家收集整理的这篇文章主要介绍了php – wordpress中的表单提交无效前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个基于wordpress分类广告网站,我正在尝试创建和xml Feed应用程序,从其他网站获取xml并创建广告.我能够从Feed创建wordpress中的帖子.但我无法从远程服务器复制图像,没有权限问题,我使用worpress函数wp_handle_upload_error,但我得到错误

这个代码

public function xml_image_upload($upload)
    {
        if ($this->xml_file_is_image($upload['tmp_name'])) 
            {
                $file = wp_handle_upload($upload,$overrides);
            }
    return $file;
    }

我得到的错误是“无效的表单提交”

我试图解决这个问题很长一段时间.我不知道什么是错的..

您需要传递数组(‘test_form’=> FALSE)作为第二个参数,否则上传将因某种原因被拒绝.
http://codex.wordpress.org/Function_Reference/wp_handle_upload#Parameters
原文链接:https://www.f2er.com/php/136628.html

猜你在找的PHP相关文章