wpseek.com
A WordPress-centric search engine for devs and theme authors



is_blog_user › WordPress Function

Since
Deprecated3.3.0
is_blog_user ( $blog_id = 0 )
Parameters:
  • (int) $blog_id Site ID
    Required: No
    Default:
See:
Returns:
  • (bool) True if the current users belong to $blog_id, false if not.
Defined at:
Codex:
Change Log:
  • MU

Checks if the current user belong to a given site.



Source

function is_blog_user( $blog_id = 0 ) {
	_deprecated_function( __FUNCTION__, '3.3.0', 'is_user_member_of_blog()' );

	return is_user_member_of_blog( get_current_user_id(), $blog_id );
}