Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function drip_link( $args ) {
- $user_id = $args['user_id'];
- if( current_user_can( 'manage_options' ) ) {
- $account = wp_fusion()->settings->get( 'drip_account' );
- $contact_id = wp_fusion()->user->get_contact_id( $user_id );
- return '<a href="https://getdrip.com/' . $account . '/subscribers/' . $contact_id . '" target="_blank">Drip Contact Record</a>';
- }
- }
- add_shortcode( 'drip_link', 'drip_link' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement