यह बहुत आसान है कि आपने पोस्ट मेटा में जोड़े गए डेटा को काम कर लिया है। मुसीबत मैं स्टोर में डाउनलोड करने योग्य उत्पादों को जोड़ रहा हूं।
नीचे कोड है जो मैं इसका उपयोग कर रहा हूं वह सभी पोस्ट मेटा को सूचीबद्ध करता है जो वू वाणिज्य द्वारा उपयोग किया जाता है। यह एक उत्पाद प्रकाशित करता है, हालांकि डाउनलोड लिंक संलग्न नहीं होगा।
मूल रूप से जब मैंने शुरू किया था तो मैंने उस सरणी के साथ एक त्रुटि की थी जो डाउनलोड लिंक को खराब लिंक "बी" के उत्पादन में संग्रहीत करता है और उसके बाद एक दूसरी डाउनलोड फ़ाइल जो सही थी। किसी उत्पाद के मैन्युअल रूप से जोड़े जाने के लिए सरणी को ठीक करने के बाद इसे जोड़ा नहीं जाता है कि कोई अकेला फ़ाइल नहीं दिखाएगा। अगर किसी को इस पर जानकारी है तो यह बहुत सराहना की जाएगी
$post = array(
'post_author' => $user_id,
'post_content' => '',
'post_status' => "publish",
'post_title' => $product->part_num,
'post_parent' => '',
'post_type' => "product",
);
//Create post
$post_id = wp_insert_post( $post, $wp_error );
if($post_id){
$attach_id = get_post_meta($product->parent_id, "_thumbnail_id", true);
add_post_meta($post_id, '_thumbnail_id', $attach_id);
}
wp_set_object_terms( $post_id, 'Races', 'product_cat' );
wp_set_object_terms($post_id, 'simple', 'product_type');
update_post_meta( $post_id, '_visibility', 'visible' );
update_post_meta( $post_id, '_stock_status', 'instock');
update_post_meta( $post_id, 'total_sales', '0');
update_post_meta( $post_id, '_downloadable', 'yes');
update_post_meta( $post_id, '_virtual', 'yes');
update_post_meta( $post_id, '_regular_price', "1" );
update_post_meta( $post_id, '_sale_price', "1" );
update_post_meta( $post_id, '_purchase_note', "" );
update_post_meta( $post_id, '_featured', "no" );
update_post_meta( $post_id, '_weight', "" );
update_post_meta( $post_id, '_length', "" );
update_post_meta( $post_id, '_width', "" );
update_post_meta( $post_id, '_height', "" );
update_post_meta($post_id, '_sku', "");
update_post_meta( $post_id, '_product_attributes', array());
update_post_meta( $post_id, '_sale_price_dates_from', "" );
update_post_meta( $post_id, '_sale_price_dates_to', "" );
update_post_meta( $post_id, '_price', "1" );
update_post_meta( $post_id, '_sold_individually', "" );
update_post_meta( $post_id, '_manage_stock', "no" );
update_post_meta( $post_id, '_backorders', "no" );
update_post_meta( $post_id, '_stock', "" );
// file paths will be stored in an array keyed off md5(file path)
$downdloadArray =array('name'=>"Test", 'file' => $uploadDIR['baseurl']."/video/".$video);
$file_path =md5($uploadDIR['baseurl']."/video/".$video);
$_file_paths[ $file_path ] = $downdloadArray;
// grant permission to any newly added files on any existing orders for this product
// do_action( 'woocommerce_process_product_file_download_paths', $post_id, 0, $downdloadArray );
update_post_meta( $post_id, '_downloadable_files', $_file_paths);
update_post_meta( $post_id, '_download_limit', '');
update_post_meta( $post_id, '_download_expiry', '');
update_post_meta( $post_id, '_download_type', '');
update_post_meta( $post_id, '_product_image_gallery', '');
उम्मीद है कि यह गुणवत्ता मानक के अनुरूप है :)