function.php
。 //sku
$product[0] = "10000";//pizza
$product[1] = "10001";//additive to pizza - cheese
//quantity of products
$product_kol[0] = "1";
$product_kol[1] = "1";
//additional product options
$product_mod[1] = "0";//the product with key 1 is the product modifier with key 0
add_action('woocommerce_thankyou', 'send_order_to_delivery_service');
function send_order_to_delivery_serviced( $order_id ){
`//get order object and order details`
`$order = new WC_Order( $order_id );`