I've this code on my Website:
$order_items = $order->get_items();
foreach ( $order_items as $item_id => $item ) {
$item_total = wc_get_order_item_meta( $item_id, '_line_total', true );
}
This returns the item total as a float value. But how can I get this now as a formatted value?
Currently: 1500
Goal: 1.500,00 €
Is there a function for this or do I need to write my own code to receive this result?