, :
add_action('woocommerce_product_options_general_product_data', 'my_custom_fields');
function my_custom_fields() {
$field = array(
'id' => 'my_custom_message',
'label' => 'Message:',
'description' => 'This is a custom message not part of WooCommerce',
'desc_tip' => true,
'placeholder' => 'Type a message',
);
woocommerce_wp_text_input($field);
}
add_action('woocommerce_process_product_meta', 'save_my_custom_fields');
function save_my_custom_fields($post_id) {
update_post_meta(
$post_id,
'my_custom_message',
esc_attr($POST['my_custom_message'])
);
}
$ , , :
$field = array(
'id' => 'my_custom_message',
'label' => 'Message:',
'description' => 'This is a custom message not part of WooCommerce',
'desc_tip' => true,
'placeholder' => 'Type a message',
);
:
'class' => 'css-class',
'style' => 'background:red',
'wrapper_class' => 'css-class',