bp_xprofile_base_group_id( $defalut = 1,  $get_option = true )

Get the group id of the base name field

Description

Source

File: bp-xprofile/bp-xprofile-functions.php

1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
function bp_xprofile_base_group_id( $defalut = 1, $get_option = true ) {
    if ( is_multisite() ) {
        $field_id = get_site_option( 'bp-xprofile-base-group-id' );
    }
 
    if ( empty( $field_id ) && $get_option ) {
        $field_id = bp_get_option( 'bp-xprofile-base-group-id', $defalut );
    }
 
    return (int) apply_filters( 'bp_xprofile_base_group_id', $field_id );
}

Changelog

Changelog
Version Description
BuddyBoss 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.