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