如何在新订单电子邮件中显示 WooCommerce 自定义产品元?

我目前正在成功保存单个产品的自定义帖子元,如下所示:


    function save_payment_terms( $product_id ) {


        if ( isset( $_POST['payment_terms'] ) ) {

            update_post_meta( $product_id, 'payment_terms', is_numeric( $_POST['payment_terms'] ) ? absint( wp_unslash( $_POST['payment_terms'] ) ) : '1' );

        }


    }

我该如何将自定义帖子元添加到新订单确认电子邮件中?我尝试了以下钩子但没有成功:woocommerce_email_order_meta和woocommerce_order_item_meta_start。最新的迭代如下:


add_action('woocommerce_order_item_meta_start', 'email_confirmation_display_order_items', 10, 4);


function email_confirmation_display_order_items($item_id, $item, $order, $plain_text) {

    echo '<div>Terms: '. wc_get_order_item_meta( $item_id, 'payment_terms') .'</div>';


}

导致:

https://img1.sycdn.imooc.com/65aa1ace0001646f06520645.jpg

做 a var_dumpwc_get_order_item_meta我得到:../snippet-ops.php(446) : eval()'d code:7:boolean false

任何人都可以阐明这一点吗?


陪伴而非守候
浏览 106回答 1
1回答

白猪掌柜的

请尝试以下方法:add_action( 'woocommerce_order_item_meta_start', 'email_confirmation_display_order_items', 10, 3 );function email_confirmation_display_order_items( $item_id, $item, $order ) {&nbsp; &nbsp; // On email notifications for line items&nbsp; &nbsp; if ( ! is_wc_endpoint_url() && $item->is_type('line_item') ) {&nbsp; &nbsp; &nbsp; &nbsp; $payment_terms = get_post_meta( $item->get_product_id(), 'payment_terms', true );&nbsp; &nbsp; &nbsp; &nbsp; if ( ! empty($payment_terms) ) {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; printf( '<div>' . __("Terms: %s", "woocommerce") . '</div>', $payment_terms );&nbsp; &nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; }}代码位于活动子主题(或活动主题)的functions.php 文件中。它应该有效。
打开App,查看更多内容
随时随地看视频慕课网APP