Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: add_user_role

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

This hook occurs 2 times in this file.

Line Code
566
567           /**
568            * Fires immediately after the user has been given a new role.
569            *
570            * @since 4.3.0
571            *
572            * @param int    $user_id The user ID.
573            * @param string $role    The new role.
574            */
575           do_action( 'add_user_role', $this->ID, $role );
576      }
577
578      /**
579       * Removes role from user.
580       *
581       * @since 2.0.0
582       *
583       * @param string $role Role name.
584       */
 
Line Code
641                     continue;
642                }
643
644                /** This action is documented in wp-includes/class-wp-user.php */
645                do_action( 'remove_user_role', $this->ID, $old_role );
646           }
647
648           if ( $role && ! in_array( $role, $old_roles, true ) ) {
649                /** This action is documented in wp-includes/class-wp-user.php */
650                do_action( 'add_user_role', $this->ID, $role );
651           }
652
653           /**
654            * Fires after the user's role has changed.
655            *
656            * @since 2.9.0
657            * @since 3.6.0 Added $old_roles to include an array of the user's previous roles.
658            *
659            * @param int      $user_id   The user ID.