第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

WooCommerce 使用表單中的圖像創(chuàng)建新產(chǎn)品

WooCommerce 使用表單中的圖像創(chuàng)建新產(chǎn)品

PHP
桃花長(zhǎng)相依 2022-07-09 18:12:19
希望創(chuàng)建新產(chǎn)品并將已位于服務(wù)器上的圖像添加到媒體庫(kù)。img.png目前,該腳本創(chuàng)建了一個(gè)帶有 3 個(gè)附加圖像的新產(chǎn)品,但盡管路徑似乎正確,但它們已損壞。新產(chǎn)品也成功加入購(gòu)物車。add_action('init', 'customcart');function customcart() {if (isset($_POST["addcustomcarts"])) {global $woocommerce;$my_post = array(  'post_title'    => 'Nautical Product',  'post_content'  => 'Desc here',  'post_status'   => 'publish',  'post_author'   => 1,  'post_type'     =>'product');// Insert the post into the database$product_ID = wp_insert_post( $my_post );if ( $product_ID ){  add_post_meta($product_ID, '_regular_price', 21.95 );  add_post_meta($product_ID, '_price', 21.95 );  add_post_meta($product_ID, '_stock_status', 'instock' );$images = array('img.png', 'img.png', 'img.png');// Get the path to the upload directory.$wp_upload_dir = wp_upload_dir();foreach($images as $name) {$attachment = array(    'guid'=> $wp_upload_dir['url'] . 'https://example.com/' . basename( $name ),     'post_mime_type' => 'image/png',    'post_title' => 'Image name',    'post_content' => 'my description',    'post_status' => 'inherit'     );$image_id = wp_insert_attachment($attachment, $name, $product_ID);// Make sure that this file is included, as wp_generate_attachment_metadata() depends on it.require_once( ABSPATH . 'wp-admin/includes/image.php' );// Generate the metadata for the attachment, and update the database record.$attach_data = wp_generate_attachment_metadata( $image_id, $name );wp_update_attachment_metadata( $image_id, $attach_data );}  $woocommerce->cart->add_to_cart( $product_ID, $quantity=1 );  exit( wp_redirect( get_permalink( woocommerce_get_page_id( 'cart' ) ) ) );} }}
查看完整描述

1 回答

?
三國(guó)紛爭(zhēng)

TA貢獻(xiàn)1804條經(jīng)驗(yàn) 獲得超7個(gè)贊

您可以將代碼用于圖像生成


$image_url = "Full path of image";

$product_id = "Product id";

$upload_dir = wp_upload_dir();

$image_data = file_get_contents($image_url);

$filename = basename($image_url);


// create correct path if not exist 

if(wp_mkdir_p($upload_dir['path']))

{

  $file = $upload_dir['path'] . '/' . $filename;

}

else

{

  $file = $upload_dir['basedir'] . '/' . $filename;

}

file_put_contents($file, $image_data);


$wp_filetype = wp_check_filetype($filename, null );

$attachment = array(

    'post_mime_type' => $wp_filetype['type'],

    'post_title' => sanitize_file_name($filename),

    '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 );

// update attachement metadata

wp_update_attachment_metadata( $attach_id, $attach_data );

// set post thumbnail

set_post_thumbnail( $product_id, $attach_id );


查看完整回答
反對(duì) 回復(fù) 2022-07-09
  • 1 回答
  • 0 關(guān)注
  • 106 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)