Answers for "woocommerce get product id by item id"

0

woocommerce order item get product id

foreach ( $items as $item ) {
    $product_name = $item->get_name();
    $product_id = $item->get_product_id();
    $product_variation_id = $item->get_variation_id();
}
Posted by: Guest on September-01-2020

Code answers related to "woocommerce get product id by item id"

Browse Popular Code Answers by Language