Created
September 19, 2015 06:52
-
-
Save SirDarcanos/8798f11450e792112233 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'woocommerce_product_options_general_product_data', 'wc_custom_add_custom_fields' ); | |
function wc_custom_add_custom_fields() { | |
// Print a custom text field | |
woocommerce_wp_text_input( array( | |
'id' => '_custom_text_field', | |
'label' => 'Custom Text Field', | |
'description' => 'This is a custom field, you can write here anything you want.', | |
'desc_tip' => 'true', | |
'placeholder' => 'Custom text' | |
) ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment