WordPress教程:WooCommerce向产品可变添加自定义字段

向产品可变添加自定义字段

https://Display Fields
add_action( 'woocommerce_product_after_variable_attributes', 'variable_fields', 10, 2 );
https://JS to add fields for new variations
add_action( 'woocommerce_product_after_variable_attributes_js', 'variable_fields_js' );
https://Save variation fields
add_action( 'woocommerce_process_product_meta_variable', 'variable_fields_process', 10, 1 );
 
function variable_fields( $loop, $variation_data ) { ?>  
  <tr>
    <td>
      <div>
          <label></label>
          <input type="text" size="5" name="my_custom_field[]" value=""/>
      </div>
    </td>
  </tr>
 
<tr>
    <td>
      <div>
          <label></label>
 
      </div>
    </td>
  </tr>
<?php }
 
function variable_fields_process( $post_id ) {
  if (isset( $_POST['variable_sku'] ) ) :
    $variable_sku = $_POST['variable_sku'];
    $variable_post_id = $_POST['variable_post_id'];
    $variable_custom_field = $_POST['my_custom_field'];
    for ( $i = 0; $i < sizeof( $variable_sku ); $i++ ) :
      $variation_id = (int) $variable_post_id[$i];
      if ( isset( $variable_custom_field[$i] ) ) {
        update_post_meta( $variation_id, '_my_custom_field', stripslashes( $variable_custom_field[$i] ) );
      }
    endfor;
  endif;
}

在哪里添加此代码?

将PHP代码放在主题或子主题functions.php文件的底部。

WordPress技巧

WordPress教程:WooCommerce类别小工具中排除一个类别

2019-3-17 17:39:41

WordPress技巧

WordPress教程:WooCommerce用“sold”替换“Out of stock”

2019-3-17 17:42:14

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索