我是 php 的新手,并使用 WordPress 作为我的 CMS。我正在尝试在 WordPress 前端表单中启用带有所需特色图像的音频上传表单的 PHP 代码是
if ($_FILES['audio']) {
foreach ($_FILES as $file => $array) {
$newupload = insert_attachment($file,$pid);
$theconents = get_attachment_link($newupload);
$my_post = array(
'ID'=> $pid,
'post_content' => $theconents
);
wp_update_post( $my_post );
}
}
if ($_FILES['thumbnail']) {
foreach ($_FILES as $file => $array) {
$newuploads = insert_image($file,$pid);
// $newuploads returns the attachment id of the file that
// was just uploaded. Do whatever you want with that now.
}
}
insert_image 和 Insert_attachment 函数是
function insert_attachment($file_handler,$post_id,$setthumb='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 );
return $attach_id;
}
和
function insert_image($file_handler,$post_id,$setthumb='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 ($setthumb) update_post_meta($post_id,'_thumbnail_id',$attach_id);
return $attach_id;
}
基本的html是
声音的
<input type="file" name="audio" id="upload-audio"/>;
音频特色图片
<input type="file" name="thumbnail" id="upload-audio"/>;
当我提交表格时
我只看到$_FILES['audio']
作品,我看不到特色图片