Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_action(
- 'admin_init',
- function () {
- $user_id = 10235; /* user_id */
- $date_end = 1721785801; /* subs end period in timestamp */
- $stripe_subs_id = 'sub_1PfXrlCucJeJRpKNZ8RomIRQ'; /* Subscriptions ID */
- $expired = new DateTime();
- $expired = $expired->setTimestamp( $date_end );
- $expired = $expired->setTimezone( new DateTimeZone( 'UTC' ) );
- $expired = $expired->format( 'Y-m-d H:i:s' );
- update_user_option( $user_id, 'jpw_stripe_subs_id', $stripe_subs_id );
- update_user_option( $user_id, 'jpw_subs_type', 'stripe' );
- update_user_option( $user_id, 'jpw_subscribe_status', 'ACTIVE' );
- update_user_option( $user_id, 'jpw_expired_date', $expired );
- }
- );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement