BP_Notifications_Component::setup_title()
Set up the title for pages and
Description Description
Source Source
File: bp-notifications/classes/class-bp-notifications-component.php
public function setup_title() {
// Adjust title.
if ( bp_is_notifications_component() ) {
$bp = buddypress();
if ( bp_is_my_profile() ) {
$bp->bp_options_title = __( 'Notifications', 'buddypress' );
} else {
$bp->bp_options_avatar = bp_core_fetch_avatar( array(
'item_id' => bp_displayed_user_id(),
'type' => 'thumb',
'alt' => sprintf( __( 'Profile picture of %s', 'buddypress' ), bp_get_displayed_user_fullname() )
) );
$bp->bp_options_title = bp_get_displayed_user_fullname();
}
}
parent::setup_title();
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.9.0 | Introduced. |