wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



is_blog_user › WordPress Function

Depuis
Dépréciée3.3.0
is_blog_user ( $blog_id = 0 )
Paramètres:
  • (int) $blog_id Site ID
    Requis: Non
    Défaut:
Voir:
Retourne:
  • (bool) True if the current users belong to $blog_id, false if not.
Défini(e) dans:
Codex:
Changelog:
  • 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 );
}