Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
BP_Attachment_Avatar::get_group_id()
Get the group id to set its avatar.
Description Description
Return Return
(integer) The group ID.
Source Source
File: bp-core/classes/class-bp-attachment-avatar.php
private function get_group_id() { $group_id = 0; if ( bp_is_group() ) { $group_id = bp_get_current_group_id(); } return $group_id; }
Changelog Changelog
Version | Description |
---|---|
2.3.0 | Introduced. |