我尝试了很多方法来制作自定义字段 在woocommerce 3.1中,但这段代码对我没用。
任何人都可以帮我弄清楚如何在下面的链接中添加这样的自定义字段 http://www.remicorson.com/mastering-woocommerce-products-custom-fields/
祝你好运
答案 0 :(得分:1)
在使用woocommerce_product_options_general_product_data
操作挂钩
add_action('woocommerce_product_options_general_product_data','woo_add_custom_general_fields');
function woo_add_custom_general_fields() {
global $woocommerce, $post;
woocommerce_wp_text_input(
array(
'id' => '_text_field',
'label' => __( 'My Text Field', 'woocommerce' ),
'placeholder' => 'http://',
'desc_tip' => 'true',
'description' => __( 'Enter the custom value here.', 'woocommerce' )
)
);
}
现在使用woocommerce_process_product_meta
add_action( 'woocommerce_process_product_meta', 'woo_add_custom_general_fields_save' );
function woo_add_custom_general_fields_save( $post_id ){
$woocommerce_text_field = $_POST['_text_field'];
if( !empty( $woocommerce_text_field ) )
update_post_meta( $post_id, '_text_field', esc_attr( $woocommerce_text_field ) );
}
我现在你明白了。它与WooCommerce 3.1一起使用