P粉2074830872023-08-19 00:32:27
您的实际代码已经过时...要将购买的产品名称(和数量)添加到发送给管理员的新订单电子邮件通知的主题中,请使用以下代码:
add_filter('woocommerce_email_subject_new_order', 'change_email_subject_new_order', 10, 2); function change_email_subject_new_order( $formatted_subject, $order ) { $products = array(); // 初始化 // 循环遍历订单项目 foreach( $order->get_items() as $item ){ // 将格式化的产品名称和数量添加到数组中 $products[] = sprintf( '%s × %d', $item->get_name(), $item->get_quantity() ); } $count = count($products); // 产品数量 $products = implode(', ', $products); // 将数组转换为字符串 return sprintf( __('[%s] 新客户订单(#%s),%s,来自%s%s', 'woocommerce'), wp_specialchars_decode(get_option('blogname'), ENT_QUOTES), $order->get_order_number(), sprintf( _n('产品(%s)', '产品(%s)', $count, 'woocommerce'), $products, $products ), $order->get_billing_first_name(), $order->get_billing_last_name() ); }
将代码放在您的子主题的functions.php文件中(或插件中)。经过测试,可以正常工作。