使用woocommerce在标题管理中显示元(交付日期)

时间:2019-01-13 16:09:10

标签: email woocommerce meta

这是我的第一篇帖子,对显示管理员电子邮件有一些帮助。我想在管理员电子邮件中显示交货日期和时间段。

我为此感到困难,需要帮助。下面是我的代码:

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;
}

0 个答案:

没有答案