Php 电子商务电子邮件模板定制

Php 电子商务电子邮件模板定制,php,wordpress,woocommerce,customization,hook-woocommerce,Php,Wordpress,Woocommerce,Customization,Hook Woocommerce,我试图在WooCommerce网站的订单确认电子邮件中添加一个段落。我将对WooCommerce的支持添加到我的子主题的functions.php文件中。然后我将一个电子邮件模板复制到我的子主题中的适当文件夹中。这是我尝试的模板文件。但是当我测试电子邮件(通过插件)时,我得到,“你的网站上出现了一个严重错误。”我通过验证器运行PHP,有一个错误——但我对PHP不熟练。有人能帮我弄清楚要更改什么才能成功添加段落吗?我在一个临时环境中工作。提前谢谢 <?php /* translators:

我试图在WooCommerce网站的订单确认电子邮件中添加一个段落。我将对WooCommerce的支持添加到我的子主题的functions.php文件中。然后我将一个电子邮件模板复制到我的子主题中的适当文件夹中。这是我尝试的模板文件。但是当我测试电子邮件(通过插件)时,我得到,“你的网站上出现了一个严重错误。”我通过验证器运行PHP,有一个错误——但我对PHP不熟练。有人能帮我弄清楚要更改什么才能成功添加段落吗?我在一个临时环境中工作。提前谢谢

<?php /* translators: %s: Customer first name */ ?>
<p><?php printf( esc_html__( 'Hi %s,', 'woocommerce' ), esc_html( $order->get_billing_first_name() ) ); ?></p>
<?php /* translators: %s: Order number */ ?>
<p><?php printf( esc_html__( 'Just to let you know — we\'ve received your order #%s, and it is now being processed:', 'woocommerce' ), esc_html( $order->get_order_number() ) ); ?></p>


<p><?php printf( esc_html__( 'We are busy baking your products for delivery from our kitchen to your door\. Any products ordered last week\, including over the past weekend\, are being baked this week and will ship next week\. So\, your order will be delivered in 3 to 10 days from the date of your order\. Look for another email providing your tracking number.'); ?> </p>
<?php


有一个语法错误。试试下面的正确答案

<p><?php printf( esc_html__( 'We are busy baking your products for delivery from our kitchen to your door. Any products ordered last week, including over the past weekend, are being baked this week and will ship next week. So, your order will be delivered in 3 to 10 days from the date of your order. Look for another email providing your tracking number.')); ?> </p>


出现语法错误。试试下面的正确答案

<p><?php printf( esc_html__( 'We are busy baking your products for delivery from our kitchen to your door. Any products ordered last week, including over the past weekend, are being baked this week and will ship next week. So, your order will be delivered in 3 to 10 days from the date of your order. Look for another email providing your tracking number.')); ?> </p>