Advertisement
verygoodplugins

Untitled

Jun 18th, 2019
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. function add_custom_meta_field( $meta_fields ) {
  2.  
  3.     $meta_fields['wpfusion'] = array( 'label' => 'Opt In', 'type' => 'text', 'group' => 'woocommerce' );
  4.  
  5.     return $meta_fields;
  6.  
  7. }
  8.  
  9. add_filter( 'wpf_meta_fields', 'add_custom_meta_field' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement