bp_get_the_profile_field_optional_label()

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

Description

Return

(string) HTML for the optional label.

Source

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

1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
function bp_get_the_profile_field_optional_label() {
    $retval = '';
 
    if ( ! bp_get_the_profile_field_is_required() ) {
 
        // @note Removed (optional) text from here for the future reference.
        $translated_string = __( '(optional)', 'buddyboss' );
 
        $retval = ' <span class="bp-optional-field-label">';
        $retval .= apply_filters( 'bp_get_the_profile_field_optional_label', $translated_string, bp_get_the_profile_field_id() );
        $retval .= '</span>';
 
    }
 
    return $retval;
}

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.