bp_get_options_title()

Get the ‘bp_options_title’ property from the BP global.

Description

Not currently used in BuddyPress.

Source

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

115
116
117
118
119
120
121
122
123
function bp_get_options_title() {
    $bp = buddypress();
 
    if ( empty( $bp->bp_options_title ) ) {
        $bp->bp_options_title = __( 'Options', 'buddyboss' );
    }
 
    echo apply_filters( 'bp_get_options_title', esc_attr( $bp->bp_options_title ) );
}

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.