php [使用操作和过滤器自定义结帐字段]向电子邮件添加自定义WooCommerce结帐字段

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php [使用操作和过滤器自定义结帐字段]向电子邮件添加自定义WooCommerce结帐字段相关的知识,希望对你有一定的参考价值。

/* To use: 
1. Add this snippet to your theme's functions.php file
2. Change the meta key names in the snippet
3. Create a custom field in the order post - e.g. key = "Tracking Code" value = abcdefg
4. When next updating the status, or during any other event which emails the user, they will see this field in their email
*/
add_filter('woocommerce_email_order_meta_keys', 'my_custom_order_meta_keys');

function my_custom_order_meta_keys( $keys ) {
     $keys[] = 'Tracking Code'; // This will look for a custom field called 'Tracking Code' and add it to emails
     return $keys;
}

以上是关于php [使用操作和过滤器自定义结帐字段]向电子邮件添加自定义WooCommerce结帐字段的主要内容,如果未能解决你的问题,请参考以下文章

php [使用操作和过滤器自定义结帐字段]向WooCommerce添加新的送货字段

php [使用操作和过滤器自定义结帐字段]向WooCommerce添加新的送货字段

php [使用操作和过滤器自定义结帐字段]保存WooCommerce自定义结帐字段

php [使用操作和过滤器自定义结帐字段]验证WooCommerce自定义结帐字段

php [使用操作和过滤器自定义结帐字段] WooCommerce自定义结帐字段不需要电话号码示例。

php [使用操作和过滤器自定义结帐字段]显示WooCommerce自定义结帐字段管理员订单页面。