如何在Woocommerce新订单电子邮件模板中的表之后添加字段?

时间:2019-05-27 11:42:03

标签: wordpress email woocommerce

在woocommerce中,我想将2条信息添加到email_after_order_table。我该怎么吃?请告知...

1 个答案:

答案 0 :(得分:0)

它在文件yourtheme/woocommerce/emails/email-order-details.php中吗? 如果是这样,则可以在函数文件中创建钩子。

add_action( 'woocommerce_email_after_order_table', 'your_example_function', 90, 4 );
function your_example_function( $order, $sent_to_admin, $plain_text, $email ){
    // code
}

该功能your_example_function将在email-order-details.php中的动作woocommerce_email_after_order_table之后启动。