这是我的第一篇帖子,对显示管理员电子邮件有一些帮助。我想在管理员电子邮件中显示交货日期和时间段。
我为此感到困难,需要帮助。下面是我的代码:
add_filter('woocommerce_email_subject_new_order', 'change_admin_email_subject', 1, 2);
function change_admin_email_subject( $subject, $order ) {
$time_slot = get_post_meta( $order_id, 'jckwds_timeslot', true );
$subject = sprintf( '[%s] Pour %s - %s - %sChf', $order->id, $order->shipping_city, $time_slot, $order->order_total );
return $subject;
}