BP_XProfile_ProfileData::delete()
Delete specific XProfile field data.
Description
Return
(boolean)
Source
File: bp-xprofile/classes/class-bp-xprofile-profiledata.php
public function delete() {
global $wpdb;
$bp = buddypress();
/**
* Fires before the current profile data instance gets deleted.
*
* @since BuddyPress 1.9.0
*
* @param BP_XProfile_ProfileData $this Current instance of the profile data being deleted.
*/
do_action_ref_array( 'xprofile_data_before_delete', array( $this ) );
$deleted = $wpdb->query( $wpdb->prepare( "DELETE FROM {$bp->profile->table_name_data} WHERE field_id = %d AND user_id = %d", $this->field_id, $this->user_id ) );
if ( empty( $deleted ) ) {
return false;
}
/**
* Fires after the current profile data instance gets deleted.
*
* @since BuddyPress 1.9.0
*
* @param BP_XProfile_ProfileData $this Current instance of the profile data being deleted.
*/
do_action_ref_array( 'xprofile_data_after_delete', array( $this ) );
return true;
}
Changelog
| Version | Description |
|---|---|
| BuddyPress 1.0.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.