can_add_user_to_blog

can_add_user_to_blog

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('can_add_user_to_blog') is found 1 times:

  • /wp-includes/ms-functions.php line 173
    	 * @param int           $user_id User ID.
    	 * @param string        $role    User role.
    	 * @param int           $blog_id Site ID.
    	 */
    	$can_add_user = apply_filters( 'can_add_user_to_blog', true, $user_id, $role, $blog_id );
    
    	if ( true !== $can_add_user ) {
    		restore_current_blog();
    
    		if ( is_wp_error( $can_add_user ) ) {
    			return $can_add_user;