GochiSiyan

reset paywall information

May 7th, 2021 (edited)
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. add_action('wp_head',function (){
  2. $users = get_users();
  3.  
  4. foreach ($users as $user) {
  5. update_user_option( $user->ID, 'jpw_subscribe_status', '' );
  6. update_user_option( $user->ID, 'jpw_expired_date', date( 'Y-m-d H:i:s', strtotime( '-1 week' ) ) );
  7. update_user_option( $user->ID, 'jpw_stripe_subs_id', 'demo_user_id_subscription' );
  8. update_user_option( $user->ID, 'jpw_subs_type', 'stripe' );
  9. }
  10. });
Add Comment
Please, Sign In to add comment