Advertisement
verygoodplugins

Untitled

Sep 24th, 2018
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. function drip_link( $args ) {
  2.  
  3.     $user_id = $args['user_id'];
  4.  
  5.     if( current_user_can( 'manage_options' ) ) {
  6.  
  7.         $account = wp_fusion()->settings->get( 'drip_account' );
  8.         $contact_id = wp_fusion()->user->get_contact_id( $user_id );
  9.  
  10.         return '<a href="https://getdrip.com/' . $account . '/subscribers/' . $contact_id . '" target="_blank">Drip Contact Record</a>';
  11.  
  12.     }
  13.  
  14. }
  15.  
  16. add_shortcode( 'drip_link', 'drip_link' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement