Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_action('wp_head',function (){
- $users = get_users();
- foreach ($users as $user) {
- update_user_option( $user->ID, 'jpw_subscribe_status', '' );
- update_user_option( $user->ID, 'jpw_expired_date', date( 'Y-m-d H:i:s', strtotime( '-1 week' ) ) );
- update_user_option( $user->ID, 'jpw_stripe_subs_id', 'demo_user_id_subscription' );
- update_user_option( $user->ID, 'jpw_subs_type', 'stripe' );
- }
- });
Add Comment
Please, Sign In to add comment