Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: can_add_user_to_blog

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
166       *
167       * @since 4.9.0
168       *
169       * @param bool|WP_Error $retval  True if the user should be added to the site, false
170       *                               or error object otherwise.
171       * @param int           $user_id User ID.
172       * @param string        $role    User role.
173       * @param int           $blog_id Site ID.
174       */
175      $can_add_user = apply_filters( 'can_add_user_to_blog', true, $user_id, $role, $blog_id );
176
177      if ( true !== $can_add_user ) {
178           restore_current_blog();
179
180           if ( is_wp_error( $can_add_user ) ) {
181                return $can_add_user;
182           }
183
184           return new WP_Error( 'user_cannot_be_added', __( 'User cannot be added to this site.' ) );