Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <?php
  2. /**
  3. * Display a custom text field
  4. * @since 1.0.0
  5. */
  6. function cfwc_create_custom_field() {
  7. woocommerce_wp_text_input(
  8. array(
  9. 'id' => 'custom_text_field_title',
  10. 'label' => __( 'Custom Text Field Title', 'cfwc' ),
  11. 'class' => 'cfwc-custom-field',
  12. 'desc_tip' => true,
  13. 'description' => __( 'Enter the title of your custom text field.', 'ctwc' ),
  14. )
  15. );
  16. }
  17. add_action( 'woocommerce_product_options_general_product_data', 'cfwc_create_custom_field' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement