groups_is_user_creator( int $user_id, int $group_id )
Is the specified user the creator of the group?
Description Description
Parameters Parameters
- $user_id
-
(Required) ID of the user.
- $group_id
-
(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 ); }
Changelog Changelog
Version | Description |
---|---|
1.2.6 | Introduced. |