I am working on to get the categories of each product which is ordered using below code.
function get_order_detail($order_id){
$order = wc_get_order( $order_id );
foreach ($order->get_items() as $item_key => $item ){
$product = $item->get_product();
$categorieID = $product->category_ids[0];
$categorie_title = get_the_category_by_ID($categorieID);
}
}
But the products which were having variants like size, colour in their variations, they are returning the value of $categorieID as NULL.