#i', "\n", $order->get_formatted_billing_address() ) . "\n"; // WPCS: XSS ok. if ( $order->get_billing_phone() ) { echo $order->get_billing_phone() . "\n"; // WPCS: XSS ok. } if ( $order->get_billing_email() ) { echo $order->get_billing_email() . "\n"; // WPCS: XSS ok. } if ( ! wc_ship_to_billing_address_only() && $order->needs_shipping_address() ) { $shipping = $order->get_formatted_shipping_address(); if ( $shipping ) { echo "\n" . esc_html( wc_strtoupper( __( 'Shipping address', 'woocommerce' ) ) ) . "\n\n"; echo preg_replace( '##i', "\n", $shipping ) . "\n"; // WPCS: XSS ok. } }