Advertisement
GochiSiyan

Untitled

Dec 28th, 2020
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. add_filter('jnews_paywall_unaffected_user_list','exclude_user');
  2.  
  3. function exclude_user($users){
  4. array_push ( $users, get_user_by('login','username1') );
  5. array_push ( $users, get_user_by('login','username2') );
  6. return $users;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement