Enhance user profiles by adding a custom field like “Phone Number” with this simple BuddyPress code snippet.
// Add a custom field to the BuddyPress user profile
function add_custom_profile_field() {
bp_xprofile_add_field( array(
'field_group_id' => 1, // Change to your desired field group ID
'name' => 'Phone Number',
'description' => 'Enter your phone number.',
'field_type' => 'textbox',
) );
}
add_action('bp_init', 'add_custom_profile_field');