bp_get_current_group_name()

Returns the name of the current group.

Description

Return

(string) The name of the current group, if there is one.

Source

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

7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
function bp_get_current_group_name() {
    $current_group = groups_get_current_group();
    $current_name  = bp_get_group_name( $current_group );
 
    /**
     * Filters the name of the current group.
     *
     * @since BuddyPress 1.2.0
     *
     * @param string $current_name  Name of the current group.
     * @param object $current_group Instance holding the current group.
     */
    return apply_filters( 'bp_get_current_group_name', $current_name, $current_group );
}

Changelog

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.