首页 > 解决方案 > Woocommerce 电子邮件添加了一个

问题描述

我正在尝试找到一种方法来摆脱 woocommerce 电子邮件中的额外 <br>。它在 Request 之后以及日期中添加了 <br>:在此处输入图像描述

         <h2>
         <a class="link" href="<?php echo esc_url( admin_url( 'post.php?post=' . $order->get_id() . '&action=edit' ) ); ?>">
          <b><?php  printf(__( 'Request #%s test', 'woocommerce' ), $order->get_order_number() ); ?></b>
          </a> 
           (<?php  strip_tags(
              printf( '<time datetime="%s">%s</time>', 
                  $order->get_date_created()->format( 'c' ), 
                wc_format_datetime( $order->get_date_created() ) ), 
                '<br>' ); 
            ?>)
         </h2>

标签: phpwordpressemailwoocommerce

解决方案


推荐阅读