bp_group_get_activity_feed_status( int|bool $group_id = false )

Get the activity feed status of a group.

Description

This function can be used either in or out of the loop.

Parameters

$group_id

(Optional) The ID of the group whose activity feed status you want to check. Default: the displayed group, or the current group in the loop.

Default value: false

Return

(bool|string) Returns false when no group can be found. Otherwise returns the group invite status, from among 'members', 'mods', and 'admins'.

Source

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

2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
function bp_group_get_activity_feed_status( $group_id = false ) {
    global $groups_template;
 
    if ( !$group_id ) {
        $bp = buddypress();
 
        if ( isset( $bp->groups->current_group->id ) ) {
            // Default to the current group first.
            $group_id = $bp->groups->current_group->id;
        } elseif ( isset( $groups_template->group->id ) ) {
            // Then see if we're in the loop.
            $group_id = $groups_template->group->id;
        } else {
            return false;
        }
    }
 
    $activity_feed_status = groups_get_groupmeta( $group_id, 'activity_feed_status' );
 
    // Backward compatibility. When 'invite_status' is not set, fall back to a default value.
    if ( !$activity_feed_status ) {
        $activity_feed_status = apply_filters( 'bp_group_activity_feed_status_fallback', 'members' );
    }
 
    /**
     * Filters the invite status of a group.
     *
     * Activity feed status in this case means who from the group can send invites.
     *
     * @since BuddyBoss 1.0.0
     *
     * @param string $activity_feed_status Membership level needed to send an invite.
     * @param int    $group_id      ID of the group whose status is being checked.
     */
    return apply_filters( 'bp_group_get_activity_feed_status', $activity_feed_status, $group_id );
}

Changelog

Changelog
Version Description
BuddyBoss 1.0.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.