我在前端有一个表单,允许登录用户发布一个事件(自定义帖子)。如果用户附加了图像,我的表单目前可以正常工作 - 但是,图像上传字段(' postImage')是可选的,当没有附加图像时,我得到一个没有错误的空白屏幕(在日志中也没有)。在检查现场' bgc_event_pimg'在我的数据库中,我得到:
O:8:"WP_Error":2:{s:16:"WP_Errorerrors";a:1:{s:12:"upload_error";a:1:{i:0;s:21:"No file was uploaded.";}}s:20:"WP_Errorerror_data";a:0:{}}
我认为问题是由以下因素引起的:($ _FILES [$ file] ['错误'] - 而不是忽略字段/将其留空,它是插入错误但我不确定如何相应地处理这个问题。
if ($_FILES['postImage']) {
foreach ($_FILES as $file => $array) {
if ($_FILES[$file]['error'] !== UPLOAD_ERR_OK) {
return "upload error : " . $_FILES[$file]['error'];
}
$attach_id = media_handle_upload( $file, $post_id );
}
}
if ($attach_id > 0){
update_post_meta($post_id,'bgc_event_pimg',$attach_id);
}
我在functions.php;
中有以下内容function insert_attachment($file_handler,$post_id,$setthumb='false') {
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');
$attach_id = media_handle_upload( $file_handler, $post_id );
if ($setthumb) update_post_meta($post_id,'_thumbnail_id',$attach_id);
return $attach_id;
}
非常感谢
答案 0 :(得分:1)
我能够使用以下内容 -
if ($_FILES['postImage']) {
foreach ($_FILES as $file => $array) {
if ($_FILES[$file]['error'] !== UPLOAD_ERR_OK) {
//Add your error action
} else {
$attach_id = media_handle_upload( $file, $post_id );
}
}
}
if ($attach_id > 0){
update_post_meta($post_id,'bgc_event_pimg',$attach_id);
}