Created
February 6, 2018 22:14
-
-
Save IanMisnerThough/52b68aa162e293327c19b88df3c34f1f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php // remove this line if not needed | |
| add_action( 'init', 'sv_memberships_delete_user_memberships' ); | |
| function sv_memberships_delete_user_memberships() { | |
| global $wpdb; | |
| if ( $user = get_user_by( 'email', 'EMAIL-ADDRESS' ) ) { | |
| $wpdb->delete( | |
| "{$wpdb->prefix}posts", | |
| array( | |
| 'post_author' => (int) $user->ID, | |
| 'post_type' => 'wc_user_membership', | |
| 'post_status' => 'wcm-pending', | |
| ), | |
| array( '%d', '%s', '%s' ) | |
| ); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment