Advertisement
verygoodplugins

Untitled

Feb 3rd, 2019
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. function wpf_infusionsoft_shortcode( $args ) {
  2.  
  3.     $contact_id = wp_fusion()->user->get_contact_id();
  4.  
  5.     if( empty( $contact_id ) ) {
  6.         return false;
  7.     }
  8.  
  9.     if ( is_wp_error( wp_fusion()->crm->connect() ) ) {
  10.         return wp_fusion()->crm->error;
  11.     }
  12.  
  13.     $return_fields = array( $args['field'] );
  14.  
  15.     $result = wp_fusion()->crm->app->loadCon( $contact_id, $return_fields );
  16.  
  17.     return $result[ $args['field'] ];
  18.  
  19. }
  20.  
  21. add_shortcode( 'wpf_infusionsoft', 'wpf_infusionsoft_shortcode' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement