- Timestamp:
- 11/11/2020 07:23:17 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-xprofile/classes/class-bp-xprofile-profiledata.php
r11866 r12781 682 682 $bp = buddypress(); 683 683 684 return $wpdb->query( $wpdb->prepare( "DELETE FROM {$bp->profile->table_name_data} WHERE user_id = %d", $user_id ) ); 684 $field_ids = $wpdb->get_col( $wpdb->prepare( "SELECT field_id FROM {$bp->profile->table_name_data} WHERE user_id = %d", $user_id ) ); 685 686 if ( ! $field_ids ) { 687 return false; 688 } 689 690 foreach ( $field_ids as $field_id ) { 691 xprofile_delete_field_data( $field_id, $user_id ); 692 } 693 694 return count( $field_ids ); 685 695 } 686 696
Note: See TracChangeset
for help on using the changeset viewer.