WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 833 | |
| 834 | /** |
| 835 | * Filters the query arguments for the list of all users of the site. |
| 836 | * |
| 837 | * @since 6.1.0 |
| 838 | * |
| 839 | * @param array $query_args The query arguments for get_users(). |
| 840 | * @param array $parsed_args The arguments passed to wp_list_users() combined with the defaults. |
| 841 | */ |
| 842 | $query_args = apply_filters( 'wp_list_users_args', $query_args, $parsed_args ); |
| 843 | |
| 844 | $users = get_users( $query_args ); |
| 845 | |
| 846 | foreach ( $users as $user_id ) { |
| 847 | $user = get_userdata( $user_id ); |
| 848 | |
| 849 | if ( $parsed_args['exclude_admin'] && 'admin' === $user->display_name ) { |
| 850 | continue; |
| 851 | } |