You do not assign a value to the woocommerce_form_field
function. Here is the code you need:
$width = get_post_meta( $post_id, '_custom_width', true );
woocommerce_form_field( '_custom_width', // Field ID
array(
'name' => '_custom_width',
'placeholder' => 'Please enter width',
'css' => 'width: 20px;',
'type' => 'number',
'required' => true, // Or false
'custom_attributes' => array(
'step' => '0.1',
'min' => '3'
),
),
$width // Saved Value
);
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…