Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_action('wp_head',function (){
- $users = [];
- array_push ( $users, get_user_by('login','wminter') );//change the user name to the user who you wished to modify the paywall status
- foreach ($users as $user) {
- //update subscription
- update_user_option( $user->ID, 'jpw_subscribe_status', 'ACTIVE' );
- update_user_option( $user->ID, 'jpw_expired_date', date( 'Y-m-d H:i:s', strtotime( '+7 month' ) ) );//1 week subscription time
- update_user_option( $user->ID, 'jpw_stripe_subs_id', 'demo_user_id_subscription' );
- update_user_option( $user->ID, 'jpw_subs_type', 'stripe' );
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement