bp_get_group_member_is_banned()
Description Description
Return Return
(mixed|void)
Source Source
File: bp-groups/bp-groups-template.php
function bp_get_group_member_is_banned() { global $members_template; /** * Filters whether the member is banned from the current group. * * @since 1.0.0 * * @param bool $is_banned Whether or not the member is banned. */ return apply_filters( 'bp_get_group_member_is_banned', $members_template->member->is_banned ); }
Changelog Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |