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 |
|---|---|
| 1158 | |
| 1159 | /** |
| 1160 | * Filters the query arguments for the list of users in the dropdown. |
| 1161 | * |
| 1162 | * @since 4.4.0 |
| 1163 | * |
| 1164 | * @param array $query_args The query arguments for get_users(). |
| 1165 | * @param array $parsed_args The arguments passed to wp_dropdown_users() combined with the defaults. |
| 1166 | */ |
| 1167 | $query_args = apply_filters( 'wp_dropdown_users_args', $query_args, $parsed_args ); |
| 1168 | |
| 1169 | $users = get_users( $query_args ); |
| 1170 | |
| 1171 | $output = ''; |
| 1172 | if ( ! empty( $users ) && ( empty( $parsed_args['hide_if_only_one_author'] ) || count( $users ) > 1 ) ) { |
| 1173 | $name = esc_attr( $parsed_args['name'] ); |
| 1174 | if ( $parsed_args['multi'] && ! $parsed_args['id'] ) { |
| 1175 | $id = ''; |
| 1176 | } else { |