woocommerce erstellt eine Bildergalerie für Produkte

Lesezeit: 1 Minute

Ich habe ein Woocommerce-Produktupdate erstellt und ein Bild als Produktbild mit dem folgenden PHP-Code hochgeladen. Jetzt möchte ich auch eine Produktgalerie erstellen. Irgendeine Idee dafür?

function Generate_Featured_Image( $image_url, $product_id, $product_title  )
{
    $upload_dir = wp_upload_dir();
    $image_data = file_get_contents($image_url);        


    $product = new WC_product($product_id);
    $tmp_image_id = $product->get_image_id();

    if ($tmp_image_id > 0 )
        wp_delete_attachment($tmp_image_id);

    if ($image_data === FALSE)
        return false;


    $filename = basename($image_url);
    if(wp_mkdir_p($upload_dir['path']))     $file = $upload_dir['path'] . "https://stackoverflow.com/" . $filename;
    else                                    $file = $upload_dir['basedir'] . "https://stackoverflow.com/" . $filename;
    file_put_contents($file, $image_data);

    $wp_filetype = wp_check_filetype($filename, null );
    $attachment = array(
        'post_mime_type' => $wp_filetype['type'],
        'post_title' => $product_title,
        'post_content' => '',
        'post_status' => 'inherit'
    );
    $attach_id = wp_insert_attachment( $attachment, $file, $product_id );
    require_once(ABSPATH . 'wp-admin/includes/image.php');
    $attach_data = wp_generate_attachment_metadata( $attach_id, $file );
    $res1= wp_update_attachment_metadata( $attach_id, $attach_data );
    $res2= set_post_thumbnail( $product_id, $attach_id );
}

  • Hey Mann, ich werde dein Problem nicht lösen, aber du hast mein Problem gelöst … Danke !!!

    – SonickSeven

    27. Juli 2020 um 16:48 Uhr

  • Ich habe deinen Code gesehen, aber er funktioniert gut, was ist das Problem?

    – SonickSeven

    27. Juli 2020 um 16:50 Uhr

1186190cookie-checkwoocommerce erstellt eine Bildergalerie für Produkte

This website is using cookies to improve the user-friendliness. You agree by using the website further.

Privacy policy