bp_group_show_activity_feed_status_setting( string $setting, object|bool $group = false )

Output the ‘checked’ value, if needed, for a given activity_feed_status on the group create/admin screens

Description

Parameters

$setting

(Required) The setting you want to check against ('members', 'mods', or 'admins').

$group

(Optional) Group object. Default: current group in loop.

Default value: false

Source

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

2497
2498
2499
2500
2501
2502
2503
2504
2505
function bp_group_show_activity_feed_status_setting( $setting, $group = false ) {
    $group_id = isset( $group->id ) ? $group->id : false;
 
    $activity_feed_status = bp_group_get_activity_feed_status( $group_id );
 
    if ( $setting == $activity_feed_status ) {
        echo ' checked="checked"';
    }
}

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.