web-dev-qa-db-fra.com

Comment télécharger plusieurs images à l'aide de wp_insert_post

J'utilise wp_insert_post pour ajouter des produits à l'avant d'un site woocommerces

Mon code actuel va télécharger toutes les images mais seule la dernière image sera dans les images de la galerie de produits.

voici mon code;

functions.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, '_product_image_gallery', $attach_id );

  }
  return $attach_id;  
}

l'extrémité avant

if ( $_FILES ) {
    $files = $_FILES['upload_attachment'];
    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("upload_attachment" => $file);
            foreach ($_FILES as $file => $array) {
                $newupload = my_handle_attachment($file,$post_id);
                 update_post_meta($post_id,  array_Push($post_id, '_product_image_gallery',$newupload));
            }
        }
    }
}


<input type="file" name="upload_attachment[]" multiple="multiple"  />

Quelque chose ne va pas dans ce code?

1
Tejas Gajjar

Bonjour Tejas, veuillez modifier votre code ci-dessous et laissez-moi savoir s'il vous convient.

    foreach ($files['name'] as $key => $value) { 

$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 ("files" => $file); 
foreach ($_FILES as $file => $array) { 
$newupload = my_handle_attachment($file,$post_id); 

}
array_Push($gallery,$newupload);

} 
update_post_meta($post_id,'_product_image_gallery', implode(',',$gallery));
1
Pratik bhatt

vous pouvez nettoyer vous-même les attributs de titre en ajoutant ce qui suit dans votre fichier functions.php:

function remove_title_attributes($input) {
return preg_replace('/\s*title\s*=\s*(["\']).*?\1/', '', $input);
 }
 add_filter( 'wp_list_pages', 'remove_title_attributes' );
0
vikrant zilpe