【发布时间】:2018-09-23 13:58:31
【问题描述】:
我在使用下面的代码时遇到了一些问题,我希望在 woo commerce 上完成订单时发送一封电子邮件,问题是它必须属于某个类别,有人可以帮忙。
add_action( 'woocommerce_catmail', 'my_function' );
function my_function($order_id) {
$order = wc_get_order( $order_id );
foreach($order->get_items() as $orderid) {
if ($orderid['product_cat']== 630) {
$_product = get_product($item['product_id']);
$to_email = $order->billing_email;
$headers = 'From: Your Name <your@email.com>' . "\r\n";
wp_mail($to_email, 'subject', 'message', $headers );
}
}
}
【问题讨论】:
标签: php wordpress woocommerce custom-taxonomy email-notifications