bp_get_the_profile_field_required_label()

Return the ‘required’ markup in extended profile field labels.

Description

Return

(string) HTML for the required label.

Source

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

1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
function bp_get_the_profile_field_required_label() {
    $retval = '';
 
    if ( bp_get_the_profile_field_is_required() ) {
        $translated_string = __( '(required)', 'buddyboss' );
 
        $retval = ' <span class="bp-required-field-label">';
        $retval .= apply_filters( 'bp_get_the_profile_field_required_label', $translated_string, bp_get_the_profile_field_id() );
        $retval .= '</span>';
 
    }
 
    return $retval;
}

Changelog

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