bp_profile_has_multiple_groups()

Check if there is more than one group of fields for the profile being edited.

Description

Return

(bool) True if there is more than one profile field group.

Source

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

1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
function bp_profile_has_multiple_groups() {
    $has_multiple_groups = count( (array) bp_profile_get_field_groups() ) > 1;
 
    /**
     * Filters if there is more than one group of fields for the profile being edited.
     *
     * @since BuddyPress 2.1.0
     *
     * @param bool $has_multiple_groups Whether or not there are multiple groups.
     */
    return (bool) apply_filters( 'bp_profile_has_multiple_groups', $has_multiple_groups );
}

Changelog

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