bp_user_has_access()

Returns whether or not a user has access.


Description Description


Return Return

(bool)


Top ↑

Source Source

File: bp-core/bp-core-template.php

function bp_user_has_access() {
	$has_access = bp_current_user_can( 'bp_moderate' ) || bp_is_my_profile();

	/**
	 * Filters whether or not a user has access.
	 *
	 * @since 1.2.4
	 *
	 * @param bool $has_access Whether or not user has access.
	 */
	return (bool) apply_filters( 'bp_user_has_access', $has_access );
}

Top ↑

Changelog Changelog

Changelog
Version Description
1.2.4 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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