Advertisement
GochiSiyan

VIP Users

Jan 3rd, 2021
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 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.  
  7. foreach ($users as $user) {
  8. update_user_option( $user->ID, 'jpw_subscribe_status', 'ACTIVE' );
  9. update_user_option( $user->ID, 'jpw_expired_date', date( 'Y-m-d H:i:s', strtotime( '+1 week' ) ) );
  10. update_user_option( $user->ID, 'jpw_stripe_subs_id', 'demo_user_id_subscription' );
  11. update_user_option( $user->ID, 'jpw_subs_type', 'stripe' );
  12. }
  13.  
  14. return $users;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement