Advertisement
GochiSiyan

all user 6 month

Feb 10th, 2021
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. add_action('wp_head',function (){
  2. foreach (get_users() as $user){
  3. update_user_option( $user, 'jpw_subscribe_status', 'ACTIVE' );
  4. update_user_option( $user, 'jpw_expired_date', date( 'Y-m-d H:i:s', strtotime( '+6 month' ) ) );
  5. update_user_option( $user, 'jpw_subs_type', 'trial' );
  6. }
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement