Getting the value of the product's id value (_product_id) after the payment in WooCommerce
问题 I want to get the value of _product_id on the payout page ( thankyou.php ), can somebody help me with this. I have attached an image of the field I need exactly that value 回答1: You can use woocommerce_thankyou hook to get the product ID's in thankyou page function wh_getProductIds($order_id) { //getting order object $order = wc_get_order($order_id); $product_id_arr = []; //getting all line items foreach ($order->get_items() as $item) { $product = $item->get_product(); $product_id_arr =