Advertisement
verygoodplugins

Untitled

Dec 6th, 2018
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. function set_owner( $args ) {
  2.  
  3.     if( $args[1] == true ) {
  4.         $args[0] = wp_fusion()->crm_base->map_meta_fields( $args[0] );
  5.         $args[1] = false;
  6.     }
  7.  
  8.     $args[0]['Owner'] = '12345';
  9.  
  10.     return $args;
  11.  
  12. }
  13.  
  14. add_filter( 'wpf_api_add_contact_args', 'set_owner' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement