📌  相关文章
📜  woocommerce 将自定义字段数据添加到购物车页面 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:00.325000             🧑  作者: Mango

代码示例1
add_filter( "woocommerce_add_cart_item_data", "cs_add_cart_item_data", 10,2 );
function cs_add_cart_item_data( $cart_item, $product_id ){

  /*
  Custom Field name="" attr
  */
  if ( isset($_POST['custom_field_name']) ) {
    $cart_item['custom_field_name'] = sanitize_text_field( $getRawVal );
  }
  return $cart_item;
}