Advertisement
GochiSiyan

unlock

Nov 8th, 2021
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. add_action('wp_head',function (){
  2. $users = [];
  3. array_push ( $users, get_user_by('login','the_user_name') );
  4. array_push ( $users, get_user_by('login','username2') );
  5.  
  6. foreach ($users as $user) {
  7. //update unlock
  8. update_user_option( $user->ID, 'jpw_unlock_remaining', 10);
  9. }
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement