Advertisement
verygoodplugins

Untitled

Mar 13th, 2019
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. function unlock_for_fb_referral( $can_access, $user_id, $post_id ) {
  2.  
  3.     if( isset( $_GET['fbclid'] ) ) {
  4.         return true;
  5.     }
  6.  
  7.     return $can_access;
  8.  
  9. }
  10.  
  11. add_filter( 'wpf_user_can_access', 'unlock_for_fb_referral', 10, 3 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement