我正在使用以下代码查找订单变化的描述,但该函数返回null
$order = wc_get_order(84687);
foreach ($order->get_items() as $item_key => $item ):
$item_id = $item->get_id();
## Using WC_Order_Item_Product methods ##
$product = $item->get_product(); // Get the WC_Product object
$description = $product->get_description();
endforeach;