BP_Groups_Component::setup_title()
Set up the title for pages and
Description
Source
File: bp-groups/classes/class-bp-groups-component.php
public function setup_title() { if ( bp_is_groups_component() ) { $bp = buddypress(); if ( bp_is_my_profile() && !bp_is_single_item() ) { $bp->bp_options_title = __( 'My Groups', 'buddyboss' ); } elseif ( !bp_is_my_profile() && !bp_is_single_item() ) { $bp->bp_options_avatar = bp_core_fetch_avatar( array( 'item_id' => bp_displayed_user_id(), 'type' => 'thumb', 'alt' => sprintf( __( 'Profile photo of %s', 'buddyboss' ), bp_get_displayed_user_fullname() ) ) ); $bp->bp_options_title = bp_get_displayed_user_fullname(); // We are viewing a single group, so set up the // group navigation menu using the $this->current_group global. } elseif ( bp_is_single_item() ) { $bp->bp_options_title = $this->current_group->name; $bp->bp_options_avatar = bp_core_fetch_avatar( array( 'item_id' => $this->current_group->id, 'object' => 'group', 'type' => 'thumb', 'avatar_dir' => 'group-avatars', 'alt' => __( 'Group Profile Photo', 'buddyboss' ) ) ); if ( empty( $bp->bp_options_avatar ) ) { $bp->bp_options_avatar = '<img src="' . esc_url( bp_core_avatar_default_thumb() ) . '" alt="' . esc_attr__( 'No Group Profile Photo', 'buddyboss' ) . '" class="avatar" />'; } } } parent::setup_title(); }
Changelog
Version | Description |
---|---|
BuddyPress 1.5.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.