skip to Main Content

WordPress Code Snippets


How to Add Custom Profile Fields in BuddyPress

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');


I’m a WordPress developer with 10+ years of experience in WooCommerce and custom plugins. I combine technical expertise with design flair to help you create standout, user-friendly websites. Let’s transform your digital presence!

Best WordPress Hosting
Back To Top