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.


Top ↑

Return Return

(int|null)


Top ↑

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 );
}

Top ↑

Changelog Changelog

Changelog
Version Description
1.2.6 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.