我需要在WooCommerce发送的处理订单电子邮件中包含一些HTML评论:
<!--name:Joe Blogs-->
<!--order_id:12345-->
<!--email:[email protected]>
我试着用
<!--name:<?php echo esc_html( $order->get_formatted_billing_full_name() ); ?>-->
<!--order_id:<?php echo esc_html( $order->get_order_number() ); ?>-->
<!--email:<?php echo esc_html( $order->get_billing_email() ); ?>-->
但收到了一个致命警告,说明文件中出现了意外的<。
有人能告诉我如何添加这些评论吗?
谢谢
1条答案
按热度按时间ltqd579y1#
正如@CBroe猜测的那样,我在PHP标记中使用了这个。在我的辩护,我是修改别人的非常混乱的模板;- )