corsonr
10/16/2013 - 2:00 PM

Mastering WooCommerce Products Custom Fields 3

Mastering WooCommerce Products Custom Fields 3

// Text Field
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' ) 
	)
);