BP_XProfile_ProfileData::delete()
Delete specific XProfile field data.
Description
Return
(boolean)
Source
File: bp-xprofile/classes/class-bp-xprofile-profiledata.php
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 | 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.