Advertisement
GochiSiyan

update user option

May 5th, 2021
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. add_action('wp_head',function (){
  2. $users = get_users();
  3. foreach ($users as $user) {
  4. if ( ! get_user_option('jpw_unlock_remaining', $user->ID) ) {
  5. update_user_option( $user->ID, 'jpw_unlock_remaining', 3 );
  6. }
  7. }
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement