扫码关注官方订阅号
如何删除或隐藏管理电子邮件的新订单标题?
我的问题:
我想打印我的订单,但电子邮件超过一页。如果我可以删除标题,我的订单只适合一页。
尝试使用
add_filter('woocommerce_email_heading_new_order','my_email_heading_customisation_function', 1, 2); function my_email_heading_customisation_function($heading){ $heading=''; return $heading; }
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
扫描下载App
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
尝试使用