groups_is_user_creator( int $user_id, int $group_id )
Is the specified user the creator of the group?
Parameters Parameters
- $user_id
-
(int) (Required) ID of the user.
- $group_id
-
(int) (Required) ID of the group.
Return Return
(int|null)
Source Source
File: bp-groups/bp-groups-functions.php
function groups_is_user_creator( $user_id, $group_id ) { return BP_Groups_Member::check_is_creator( $user_id, $group_id ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
1.2.6 | Introduced. |