0

我是 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']作品,我看不到特色图片

4

1 回答 1

1

请这样写你的表格:

 <form enctype= "multipart/form-data" method="POST">
 <input type="file"  name="audio" id="upload-audio"/>;
   Audio featured Image
  <input type="file"  name="thumbnail" id="upload-audio"/>;
   <input type="submit" value="submit"/>
 </form> 

echo "<pre>";
print_r($_FILES);die;

输出:

Array
(
    [audio] => Array
        (
            [name] => contact.php
            [type] => application/x-php
            [tmp_name] => /tmp/phphjFg37
            [error] => 0
            [size] => 17983
        )

    [thumbnail] => Array
        (
            [name] => example-form.php
            [type] => application/x-php
            [tmp_name] => /tmp/phpKbxoBx
            [error] => 0
            [size] => 2112
        )

)
于 2013-09-27T07:09:13.197 回答