您需要包含一些文件才能获取wp_handle_upload
为了工作,我有一个功能:
function My_wp_handle_upload($file_handler,$overrides) {
// check to make sure its a successful upload
if ($_FILES[$file_handler][\'error\'] !== UPLOAD_ERR_OK) __return_false();
require_once(ABSPATH . "wp-admin" . \'/includes/image.php\');
require_once(ABSPATH . "wp-admin" . \'/includes/file.php\');
require_once(ABSPATH . "wp-admin" . \'/includes/media.php\');
$upload = wp_handle_upload( $file_handler, $overrides );
return $upload ;
}
因此,将此函数添加到文件后,只需将调用更改为:
$file = wp_handle_upload($data[\'MoobLogoUpload\'], $overrides);
收件人:
$file = My_wp_handle_upload($data[\'MoobLogoUpload\'], $overrides);
更新刚刚记住,您必须使用ajax上传解决方案,如:
由于无法使用浏览器的XMLHttpRequest对象上载文件,因此可以通过iframe上载或提交任何其他插件