Advertisement
verygoodplugins

Untitled

Feb 24th, 2020
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. function my_wpf_forms_args( $args ) {
  2.  
  3.     foreach ( $args['update_data'] as $crm_field => $value ) {
  4.  
  5.         if ( $crm_field == 'email' ) {
  6.             $args['email_address'] = $value;
  7.             break;
  8.         }
  9.  
  10.     }
  11.  
  12.     return $args;
  13. }
  14.  
  15. add_filter( 'wpf_forms_args', 'my_wpf_forms_args' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement