Advertisement
palsushobhan

wcfm-vendor-social-links

Feb 24th, 2023
947
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.74 KB | None | 0 0
  1. add_filter('wcfm_social_url', function($social_handle, $social) {
  2.     switch( $social ) {
  3.         case 'linkedin' :
  4.             if( strpos( $social_handle, 'linkedin' ) === false) {
  5.                 $social_handle = 'https://www.linkedin.com/in/' . $social_handle;
  6.             }
  7.         break;
  8.         case 'pinterest' :
  9.             if( strpos( $social_handle, 'pinterest' ) === false) {
  10.                 $social_handle = 'https://in.pinterest.com/' . $social_handle;
  11.             }
  12.         break;
  13.         case 'snapchat' :
  14.             if( strpos( $social_handle, 'snapchat' ) === false) {
  15.                 $social_handle = 'https://www.snapchat.com/add/' . $social_handle;
  16.             }
  17.         break;
  18.     }
  19.     return $social_handle;
  20. }, 10, 2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement