私はphpの初心者で、CMSとしてWordPressを使用しています。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"/>;
フォームを送信するとき
Worksしか表示されず$_FILES['audio']
、アイキャッチ画像が表示されない