0

私は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']、アイキャッチ画像が表示されない

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 に答える