Advertisement
verygoodplugins

Untitled

Apr 24th, 2019
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. function auto_login_site_b_shortcode() {
  2.  
  3.     if( ! function_exists( 'wp_fusion' ) ) {
  4.         return false;
  5.     }
  6.  
  7.     $contact_id = wp_fusion()->user->get_contact_id();
  8.  
  9.     if( ! empty( $contact_id ) ) {
  10.  
  11.         return '<a href="https://amethyst.practitionerplatform.site/vu/?cid=' . $contact_id . '">Click Here</a>';
  12.  
  13.     }
  14.  
  15. }
  16.  
  17. add_shortcode( 'auto_login_site_b', 'auto_login_site_b_shortcode' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement