bp_get_options_title()
Get the ‘bp_options_title’ property from the BP global.
Contents
Description Description
Not currently used in BuddyPress.
Source Source
File: bp-core/bp-core-template.php
function bp_get_options_title() { $bp = buddypress(); if ( empty( $bp->bp_options_title ) ) { $bp->bp_options_title = __( 'Options', 'buddypress' ); } echo apply_filters( 'bp_get_options_title', esc_attr( $bp->bp_options_title ) ); }