Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: get_role_list

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
548
549           /**
550            * Filter the returned array of roles for a user.
551            *
552            * @since 4.4.0
553            *
554            * @param array   $role_list   An array of user roles.
555            * @param WP_User $user_object A WP_User object.
556            */
557           return apply_filters( 'get_role_list', $role_list, $user_object );
558      }
559
560 }
561