在woocommerce中,我想将2条信息添加到email_after_order_table。我该怎么吃?请告知...
答案 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
之后启动。