问题描述
我有一个 WordPress 表单插件,我使用 media_handle_upload
上传文件并直接到达 ids 直接和附加它的 ids 作为元日期的帖子,我使用以下来做到这一点:
表单字段的 HTML 为:
<input type="file" name="my_file_upload" id="my_file_upload">
而 php 代码是:
$attach_id = media_handle_upload( 'my_file_upload', $post_id );
if ( is_numeric( $attach_id ) ) {
update_post_meta( $post_id, '_my_file_upload', $attach_id );
}
一切都是完美的。
现在我试图上传多个文件我的 HTML 代码是:
<input type="file" name="my_file_upload[]" id="my_file_upload[]" multiple="multiple">
但是我不能使 media_handle_upload
功能与多个文件上传一起使用。
任何帮助将不胜感激。
最佳解决方案
这里如果您在开始使用自定义模板
<?php
if( 'POST' == $_SERVER['REQUEST_METHOD'] ) {
if ( $_FILES ) {
$files = $_FILES["my_file_upload"];
foreach ($files['name'] as $key => $value) {
if ($files['name'][$key]) {
$file = array(
'name' => $files['name'][$key],
'type' => $files['type'][$key],
'tmp_name' => $files['tmp_name'][$key],
'error' => $files['error'][$key],
'size' => $files['size'][$key]
);
$_FILES = array ("my_file_upload" => $file);
foreach ($_FILES as $file => $array) {
$newupload = my_handle_attachment($file,$pid);
}
}
}
}
}
?>
在 function.php 中
function my_handle_attachment($file_handler,$post_id,$set_thu=false) {
// 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');
$attach_id = media_handle_upload( $file_handler, $post_id );
if ( is_numeric( $attach_id ) ) {
update_post_meta( $post_id, '_my_file_upload', $attach_id );
}
return $attach_id;
}
感觉 http://www.kvcodes.com/2013/12/create-front-end-multiple-file-upload-wordpress/
次佳解决方案
谢谢 @ shady-m-rasmy 我使用你提到的代码,似乎第二个 foreach 循环 (下面 – 在自定义模板部分) 是不必要的,因为它只执行一次。
foreach ($_FILES as $file => $array) {
$newupload = my_handle_attachment($file,$pid);
}
所以只有离开了
$newupload = my_handle_attachment( "my_file_upload", $pid);
参考文献
注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。