Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save IanMisnerThough/52b68aa162e293327c19b88df3c34f1f to your computer and use it in GitHub Desktop.

Select an option

Save IanMisnerThough/52b68aa162e293327c19b88df3c34f1f to your computer and use it in GitHub Desktop.
<?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